Uses of Class
org.miaixz.bus.gitlab.models.Commit
Packages that use Commit
-
Uses of Commit in org.miaixz.bus.gitlab
Methods in org.miaixz.bus.gitlab 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.RepositorySubmodulesApi.updateExistingSubmoduleReference(Object projectIdOrPath, String submodule, String branch, String commitSha, String commitMessage) Update existing submodule reference in repository.Methods in org.miaixz.bus.gitlab 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, 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.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, 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.miaixz.bus.gitlab.models
Methods in org.miaixz.bus.gitlab.models that return CommitModifier and TypeMethodDescriptionBlame.getCommit()Branch.getCommit()Bridge.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.withShortId(String shortId) Commit.withStats(CommitStats stats) Commit.withStatus(String status) Commit.withTimestamp(Date timestamp) Methods in org.miaixz.bus.gitlab.models that return types with arguments of type CommitModifier and TypeMethodDescriptionCompareResults.getCommits()EventData.getCommits()MergeRequestDiff.getCommits()Methods in org.miaixz.bus.gitlab.models with parameters of type CommitModifier and TypeMethodDescriptionvoidvoidvoidvoidvoidvoidvoidvoidBranch.withCommit(Commit commit) Job.withCommit(Commit commit) Method parameters in org.miaixz.bus.gitlab.models with type arguments of type CommitModifier and TypeMethodDescriptionvoidCompareResults.setCommits(List<Commit> commits) voidEventData.setCommits(List<Commit> commits) voidMergeRequestDiff.setCommits(List<Commit> commits) EventData.withCommits(List<Commit> commits)