-
Methods in io.gitea.api that return Branch
| Modifier and Type |
Method |
Description |
Branch |
RepositoryApi.repoCreateBranch(java.lang.String owner,
java.lang.String repo,
CreateBranchRepoOption body) |
Create a branch
|
Branch |
RepositoryApi.repoGetBranch(java.lang.String owner,
java.lang.String repo,
java.lang.String branch) |
Retrieve a specific branch from a repository, including its effective branch protection
|
Methods in io.gitea.api that return types with arguments of type Branch
| Modifier and Type |
Method |
Description |
ApiResponse<Branch> |
RepositoryApi.repoCreateBranchWithHttpInfo(java.lang.String owner,
java.lang.String repo,
CreateBranchRepoOption body) |
Create a branch
|
ApiResponse<Branch> |
RepositoryApi.repoGetBranchWithHttpInfo(java.lang.String owner,
java.lang.String repo,
java.lang.String branch) |
Retrieve a specific branch from a repository, including its effective branch protection
|
java.util.List<Branch> |
RepositoryApi.repoListBranches(java.lang.String owner,
java.lang.String repo,
java.lang.Integer page,
java.lang.Integer limit) |
List a repository's branches
|
ApiResponse<java.util.List<Branch>> |
RepositoryApi.repoListBranchesWithHttpInfo(java.lang.String owner,
java.lang.String repo,
java.lang.Integer page,
java.lang.Integer limit) |
List a repository's branches
|
Method parameters in io.gitea.api with type arguments of type Branch
| Modifier and Type |
Method |
Description |
com.squareup.okhttp.Call |
RepositoryApi.repoCreateBranchAsync(java.lang.String owner,
java.lang.String repo,
CreateBranchRepoOption body,
ApiCallback<Branch> callback) |
Create a branch (asynchronously)
|
com.squareup.okhttp.Call |
RepositoryApi.repoGetBranchAsync(java.lang.String owner,
java.lang.String repo,
java.lang.String branch,
ApiCallback<Branch> callback) |
Retrieve a specific branch from a repository, including its effective branch protection (asynchronously)
|
com.squareup.okhttp.Call |
RepositoryApi.repoListBranchesAsync(java.lang.String owner,
java.lang.String repo,
java.lang.Integer page,
java.lang.Integer limit,
ApiCallback<java.util.List<Branch>> callback) |
List a repository's branches (asynchronously)
|
-