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 Commit
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.Commit
CommitsApi. createCommit(Object projectIdOrPath, String branch, String commitMessage, String startBranch, String authorEmail, String authorName, CommitAction action)
Create a commit with single file and action.Commit
CommitsApi. getCommit(Object projectIdOrPath, String sha)
Get a specific commit identified by the commit hash or name of a branch or tag.Commit
RepositoryApi. getMergeBase(Object projectIdOrPath, List<String> refs)
Get the common ancestor for 2 or more refs (commit SHAs, branch names or tags).Commit
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 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 Commit
Branch. getCommit()
Commit
CompareResults. getCommit()
Commit
Job. getCommit()
Commit
Tag. getCommit()
Commit
Commit. withAuthor(Author author)
Commit
Commit. withAuthoredDate(Date authoredDate)
Commit
Commit. withAuthorEmail(String authorEmail)
Commit
Commit. withAuthorName(String authorName)
Commit
Commit. withCommittedDate(Date committedDate)
Commit
Commit. withCommitterEmail(String committerEmail)
Commit
Commit. withCommitterName(String committerName)
Commit
Commit. withCreatedAt(Date createdAt)
Commit
Commit. withId(String id)
Commit
Commit. withMessage(String message)
Commit
Commit. withParentIds(List<String> parentIds)
Commit
Commit. withShorwId(String shortId)
Commit
Commit. withStats(CommitStats stats)
Commit
Commit. withStatus(String status)
Commit
Commit. withTimestamp(Date timestamp)
Commit
Commit. withTitle(String title)
Commit
Commit. 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 void
Branch. setCommit(Commit commit)
void
CompareResults. setCommit(Commit commit)
void
Job. setCommit(Commit commit)
void
Tag. setCommit(Commit commit)
Branch
Branch. withCommit(Commit commit)
Job
Job. withCommit(Commit commit)
Method parameters in org.gitlab4j.api.models with type arguments of type Commit Modifier and Type Method Description void
CompareResults. setCommits(List<Commit> commits)
void
EventData. setCommits(List<Commit> commits)
EventData
EventData. withCommits(List<Commit> commits)
-