diff options
author | Vicent Marti <tanoku@gmail.com> | 2012-08-23 15:47:29 -0700 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2012-08-26 18:00:10 -0700 |
commit | 1c947daa80dfa442acbf8119530a3dcbf5af00c5 (patch) | |
tree | bf790b63a2af10cc715d92f202ff7bbe133d071b /include/git2/branch.h | |
parent | 17f7bde2f730723f6edae66b454afba481595bb0 (diff) | |
download | libgit2-branch-delete-ref.tar.gz |
branch: Change `git_branch_delete` to take a refbranch-delete-ref
Diffstat (limited to 'include/git2/branch.h')
-rw-r--r-- | include/git2/branch.h | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/include/git2/branch.h b/include/git2/branch.h index 8bf7eb9d4..81105d6e2 100644 --- a/include/git2/branch.h +++ b/include/git2/branch.h @@ -55,21 +55,11 @@ GIT_EXTERN(int) git_branch_create( /** * Delete an existing branch reference. * - * @param repo Repository where lives the branch. + * @param branch A valid reference representing a branch * - * @param branch_name Name of the branch to be deleted; - * this name is validated for consistency. - * - * @param branch_type Type of the considered branch. This should - * be valued with either GIT_BRANCH_LOCAL or GIT_BRANCH_REMOTE. - * - * @return 0 on success, GIT_ENOTFOUND if the branch - * doesn't exist or an error code. + * @return 0 on success, or an error code. */ -GIT_EXTERN(int) git_branch_delete( - git_repository *repo, - const char *branch_name, - git_branch_t branch_type); +GIT_EXTERN(int) git_branch_delete(git_reference *branch); /** * Loop over all the branches and issue a callback for each one. |