Uses of Class
org.gitlab4j.api.models.Commit
Packages that use Commit
-
Uses of Commit in org.gitlab4j.api
Methods in org.gitlab4j.api that return CommitModifier and TypeMethodDescriptionCommitsApi.cherryPickCommit
(Object projectIdOrPath, String sha, String branch) Cherry picks a commit in a given branch.CommitsApi.createCommit
(Object projectIdOrPath, String branch, String commitMessage, String startBranch, String authorEmail, String authorName, List<CommitAction> actions) Create a commit with multiple files and actions.CommitsApi.createCommit
(Object projectIdOrPath, String branch, String commitMessage, String startBranch, String authorEmail, String authorName, CommitAction action) Create a commit with single file and action.CommitsApi.createCommit
(Object projectIdOrPath, CommitPayload payload) Create a commit with multiple files and actions.Get a specific commit identified by the commit hash or name of a branch or tag.RepositoryApi.getMergeBase
(Object projectIdOrPath, List<String> refs) Get the common ancestor for 2 or more refs (commit SHAs, branch names or tags).CommitsApi.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 CommitModifier and TypeMethodDescriptionCommitsApi.getCommits
(Object projectIdOrPath) Get a list of all repository commits in a project.CommitsApi.getCommits
(Object projectIdOrPath, int itemsPerPage) Get a Pager of all repository commits in a project.CommitsApi.getCommits
(Object projectIdOrPath, int page, int perPage) Deprecated.CommitsApi.getCommits
(Object projectIdOrPath, String ref, String path) Get a list of file commits in a projectCommitsApi.getCommits
(Object projectIdOrPath, String ref, Date since, Date until) Get a list of repository commits in a project.CommitsApi.getCommits
(Object projectIdOrPath, String ref, Date since, Date until, int itemsPerPage) Get a Pager of repository commits in a project.CommitsApi.getCommits
(Object projectIdOrPath, String ref, Date since, Date until, int page, int perPage) Deprecated.Get a list of repository commits in a project.CommitsApi.getCommits
(Object projectIdOrPath, String ref, Date since, Date until, String path, int itemsPerPage) Get a Pager of repository commits in a projectCommitsApi.getCommits
(Object projectIdOrPath, String ref, Date since, Date until, String path, int page, int perPage) Deprecated.CommitsApi.getCommits
(Object projectIdOrPath, String ref, Date since, Date until, String path, Boolean all, Boolean withStats, Boolean firstParent) Get a List of the specified repository commits in a projectCommitsApi.getCommits
(Object projectIdOrPath, String ref, Date since, Date until, String path, Boolean all, Boolean withStats, Boolean firstParent, int itemsPerPage) Get a Pager of the specified repository commits in a projectMergeRequestApi.getCommits
(Object projectIdOrPath, Long mergeRequestIid) Get a list of merge request commits.MergeRequestApi.getCommits
(Object projectIdOrPath, Long mergeRequestIid, int itemsPerPage) Get a Pager of merge request commits.MergeRequestApi.getCommits
(Object projectIdOrPath, Long mergeRequestIid, int page, int perPage) Get a list of merge request commits.CommitsApi.getCommitsStream
(Object projectIdOrPath, String ref, Date since, Date until) Get a Stream of repository commits in a project.CommitsApi.getCommitsStream
(Object projectIdOrPath, String ref, Date since, Date until, String path) Get a Stream of repository commits in a project.CommitsApi.getCommitsStream
(Object projectIdOrPath, String ref, Date since, Date until, String path, Boolean all, Boolean withStats, Boolean firstParent) Get a Stream of the specified repository commits in a projectMergeRequestApi.getCommitsStream
(Object projectIdOrPath, Long mergeRequestIid) Get a Stream of merge request commits.CommitsApi.getCommitStream
(Object projectIdOrPath) Get a Stream of all repository commits in a project.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 instanceRepositoryApi.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 CommitModifier and TypeMethodDescriptionBlame.getCommit()
Branch.getCommit()
CompareResults.getCommit()
Deployable.getCommit()
Job.getCommit()
Release.getCommit()
Tag.getCommit()
Commit.withAuthor
(Author author) Commit.withAuthoredDate
(Date authoredDate) Commit.withAuthorEmail
(String authorEmail) Commit.withAuthorName
(String authorName) Commit.withCommittedDate
(Date committedDate) Commit.withCommitterEmail
(String committerEmail) Commit.withCommitterName
(String committerName) Commit.withCreatedAt
(Date createdAt) Commit.withMessage
(String message) Commit.withParentIds
(List<String> parentIds) Commit.withShorwId
(String shortId) Commit.withStats
(CommitStats stats) Commit.withStatus
(String status) Commit.withTimestamp
(Date timestamp) Methods in org.gitlab4j.api.models that return types with arguments of type CommitModifier and TypeMethodDescriptionCompareResults.getCommits()
EventData.getCommits()
MergeRequestDiff.getCommits()
Methods in org.gitlab4j.api.models with parameters of type CommitModifier and TypeMethodDescriptionvoid
void
void
void
void
void
void
Branch.withCommit
(Commit commit) Job.withCommit
(Commit commit) Method parameters in org.gitlab4j.api.models with type arguments of type CommitModifier and TypeMethodDescriptionvoid
CompareResults.setCommits
(List<Commit> commits) void
EventData.setCommits
(List<Commit> commits) void
MergeRequestDiff.setCommits
(List<Commit> commits) EventData.withCommits
(List<Commit> commits)