Uses of Class
io.gitea.model.Branch
-
Packages that use Branch Package Description io.gitea.api io.gitea.model -
-
Uses of Branch in io.gitea.api
Methods in io.gitea.api that return Branch Modifier and Type Method Description BranchRepositoryApi. repoCreateBranch(java.lang.String owner, java.lang.String repo, CreateBranchRepoOption body)Create a branchBranchRepositoryApi. repoGetBranch(java.lang.String owner, java.lang.String repo, java.lang.String branch)Retrieve a specific branch from a repository, including its effective branch protectionMethods 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 branchApiResponse<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 protectionjava.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 branchesApiResponse<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 branchesMethod parameters in io.gitea.api with type arguments of type Branch Modifier and Type Method Description com.squareup.okhttp.CallRepositoryApi. repoCreateBranchAsync(java.lang.String owner, java.lang.String repo, CreateBranchRepoOption body, ApiCallback<Branch> callback)Create a branch (asynchronously)com.squareup.okhttp.CallRepositoryApi. 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.CallRepositoryApi. 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) -
Uses of Branch in io.gitea.model
Methods in io.gitea.model that return Branch Modifier and Type Method Description BranchBranch. _protected(java.lang.Boolean _protected)BranchBranch. addStatusCheckContextsItem(java.lang.String statusCheckContextsItem)BranchBranch. commit(PayloadCommit commit)BranchBranch. effectiveBranchProtectionName(java.lang.String effectiveBranchProtectionName)BranchBranch. enableStatusCheck(java.lang.Boolean enableStatusCheck)BranchBranch. name(java.lang.String name)BranchBranch. requiredApprovals(java.lang.Long requiredApprovals)BranchBranch. statusCheckContexts(java.util.List<java.lang.String> statusCheckContexts)BranchBranch. userCanMerge(java.lang.Boolean userCanMerge)BranchBranch. userCanPush(java.lang.Boolean userCanPush)
-