Uses of Class
org.gitlab4j.api.models.Commit
-
Packages that use Commit Package Description org.gitlab4j.api org.gitlab4j.api.models -
-
Uses of Commit in org.gitlab4j.api
Methods in org.gitlab4j.api that return Commit Modifier and Type Method Description CommitCommitsApi. createCommit(Object projectIdOrPath, String branch, String commitMessage, String startBranch, String authorEmail, String authorName, List<CommitAction> actions)Create a commit with multiple files and actions.CommitCommitsApi. createCommit(Object projectIdOrPath, String branch, String commitMessage, String startBranch, String authorEmail, String authorName, CommitAction action)Create a commit with single file and action.CommitCommitsApi. getCommit(Object projectIdOrPath, String sha)Get a specific commit identified by the commit hash or name of a branch or tag.CommitRepositoryApi. getMergeBase(Object projectIdOrPath, List<String> refs)Get the common ancestor for 2 or more refs (commit SHAs, branch names or tags).CommitCommitsApi. revertCommit(Object projectIdOrPath, String sha, String branch)Reverts a commit in a given branch.Methods in org.gitlab4j.api that return types with arguments of type Commit Modifier and Type Method Description List<Commit>CommitsApi. getCommits(Object projectIdOrPath)Get a list of repository commits in a project.Pager<Commit>CommitsApi. getCommits(Object projectIdOrPath, int itemsPerPage)Get a Pager of repository commits in a project.List<Commit>CommitsApi. getCommits(Object projectIdOrPath, int page, int perPage)Get a list of repository commits in a project.List<Commit>CommitsApi. getCommits(Object projectIdOrPath, String ref, String path)Get a list of file commits in a projectList<Commit>CommitsApi. getCommits(Object projectIdOrPath, String ref, Date since, Date until)Get a list of repository commits in a project.Pager<Commit>CommitsApi. getCommits(Object projectIdOrPath, String ref, Date since, Date until, int itemsPerPage)Get a Pager of repository commits in a project.List<Commit>CommitsApi. getCommits(Object projectIdOrPath, String ref, Date since, Date until, int page, int perPage)Get a list of repository commits in a project.List<Commit>CommitsApi. getCommits(Object projectIdOrPath, String ref, Date since, Date until, String path)Get a list of repository commits in a project.Pager<Commit>CommitsApi. getCommits(Object projectIdOrPath, String ref, Date since, Date until, String path, int itemsPerPage)Get a Pager of repository commits in a projectList<Commit>CommitsApi. getCommits(Object projectIdOrPath, String ref, Date since, Date until, String path, int page, int perPage)Get a list of repository commits in a project.List<Commit>MergeRequestApi. getCommits(Object projectIdOrPath, int mergeRequestIid)Get a list of merge request commits.Pager<Commit>MergeRequestApi. getCommits(Object projectIdOrPath, int mergeRequestIid, int itemsPerPage)Get a Pager of merge request commits.List<Commit>MergeRequestApi. getCommits(Object projectIdOrPath, int mergeRequestIid, int page, int perPage)Get a list of merge request commits.Stream<Commit>CommitsApi. getCommitsStream(Object projectIdOrPath, String ref, Date since, Date until)Get a Stream of repository commits in a project.Stream<Commit>CommitsApi. getCommitsStream(Object projectIdOrPath, String ref, Date since, Date until, String path)Get a Stream of repository commits in a project.Stream<Commit>MergeRequestApi. getCommitsStream(Object projectIdOrPath, int mergeRequestIid)Get a Stream of merge request commits.Stream<Commit>CommitsApi. getCommitStream(Object projectIdOrPath)Get a Stream of repository commits in a project.Optional<Commit>CommitsApi. getOptionalCommit(Object projectIdOrPath, String sha)Get a specific commit identified by the commit hash or name of a branch or tag as an Optional instanceOptional<Commit>RepositoryApi. getOptionalMergeBase(Object projectIdOrPath, List<String> refs)Get an Optional instance with the value of the common ancestor for 2 or more refs (commit SHAs, branch names or tags). -
Uses of Commit in org.gitlab4j.api.models
Methods in org.gitlab4j.api.models that return Commit Modifier and Type Method Description CommitBranch. getCommit()CommitCompareResults. getCommit()CommitJob. getCommit()CommitTag. getCommit()CommitCommit. withAuthor(Author author)CommitCommit. withAuthoredDate(Date authoredDate)CommitCommit. withAuthorEmail(String authorEmail)CommitCommit. withAuthorName(String authorName)CommitCommit. withCommittedDate(Date committedDate)CommitCommit. withCommitterEmail(String committerEmail)CommitCommit. withCommitterName(String committerName)CommitCommit. withCreatedAt(Date createdAt)CommitCommit. withId(String id)CommitCommit. withMessage(String message)CommitCommit. withParentIds(List<String> parentIds)CommitCommit. withShorwId(String shortId)CommitCommit. withStats(CommitStats stats)CommitCommit. withStatus(String status)CommitCommit. withTimestamp(Date timestamp)CommitCommit. withTitle(String title)CommitCommit. withUrl(String url)Methods in org.gitlab4j.api.models that return types with arguments of type Commit Modifier and Type Method Description List<Commit>CompareResults. getCommits()List<Commit>EventData. getCommits()Methods in org.gitlab4j.api.models with parameters of type Commit Modifier and Type Method Description voidBranch. setCommit(Commit commit)voidCompareResults. setCommit(Commit commit)voidJob. setCommit(Commit commit)voidTag. setCommit(Commit commit)BranchBranch. withCommit(Commit commit)JobJob. withCommit(Commit commit)Method parameters in org.gitlab4j.api.models with type arguments of type Commit Modifier and Type Method Description voidCompareResults. setCommits(List<Commit> commits)voidEventData. setCommits(List<Commit> commits)EventDataEventData. withCommits(List<Commit> commits)
-