Examples of Commit


Examples of org.locationtech.geogig.web.api.commands.Commit

     *
     * @param options the parameter set
     * @return the built command
     */
    static Commit buildCommit(ParameterSet options) {
        Commit commit = new Commit();
        commit.setAll(Boolean.valueOf(options.getFirstValue("all", "false")));
        commit.setMessage(options.getFirstValue("message", null));
        commit.setAuthorName(options.getFirstValue("authorName", null));
        commit.setAuthorEmail(options.getFirstValue("authorEmail", null));
        return commit;
    }
View Full Code Here

Examples of playRepository.Commit

            if (pullRequest != null) {
                fromProject = pullRequest.fromProject;
            }
        }

        Commit commit = RepositoryService.getRepository(fromProject).getCommit(commitId);

        List<User> userList = new ArrayList<>();
        addCommitAuthor(commit, userList);
        addCodeCommenters(commitId, fromProject.id, userList);
        addProjectMemberList(project, userList);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.