-
Methods in io.gitea.api that return Commit
| Modifier and Type |
Method |
Description |
Commit |
RepositoryApi.repoGetSingleCommit(java.lang.String owner,
java.lang.String repo,
java.lang.String sha) |
Get a single commit from a repository
|
Methods in io.gitea.api that return types with arguments of type Commit
| Modifier and Type |
Method |
Description |
java.util.List<Commit> |
RepositoryApi.repoGetAllCommits(java.lang.String owner,
java.lang.String repo,
java.lang.String sha,
java.lang.Integer page,
java.lang.Integer limit) |
Get a list of all commits from a repository
|
ApiResponse<java.util.List<Commit>> |
RepositoryApi.repoGetAllCommitsWithHttpInfo(java.lang.String owner,
java.lang.String repo,
java.lang.String sha,
java.lang.Integer page,
java.lang.Integer limit) |
Get a list of all commits from a repository
|
java.util.List<Commit> |
RepositoryApi.repoGetPullRequestCommits(java.lang.String owner,
java.lang.String repo,
java.lang.Long index,
java.lang.Integer page,
java.lang.Integer limit) |
Get commits for a pull request
|
ApiResponse<java.util.List<Commit>> |
RepositoryApi.repoGetPullRequestCommitsWithHttpInfo(java.lang.String owner,
java.lang.String repo,
java.lang.Long index,
java.lang.Integer page,
java.lang.Integer limit) |
Get commits for a pull request
|
ApiResponse<Commit> |
RepositoryApi.repoGetSingleCommitWithHttpInfo(java.lang.String owner,
java.lang.String repo,
java.lang.String sha) |
Get a single commit from a repository
|
Method parameters in io.gitea.api with type arguments of type Commit
| Modifier and Type |
Method |
Description |
com.squareup.okhttp.Call |
RepositoryApi.repoGetAllCommitsAsync(java.lang.String owner,
java.lang.String repo,
java.lang.String sha,
java.lang.Integer page,
java.lang.Integer limit,
ApiCallback<java.util.List<Commit>> callback) |
Get a list of all commits from a repository (asynchronously)
|
com.squareup.okhttp.Call |
RepositoryApi.repoGetPullRequestCommitsAsync(java.lang.String owner,
java.lang.String repo,
java.lang.Long index,
java.lang.Integer page,
java.lang.Integer limit,
ApiCallback<java.util.List<Commit>> callback) |
Get commits for a pull request (asynchronously)
|
com.squareup.okhttp.Call |
RepositoryApi.repoGetSingleCommitAsync(java.lang.String owner,
java.lang.String repo,
java.lang.String sha,
ApiCallback<Commit> callback) |
Get a single commit from a repository (asynchronously)
|
-