From: Junio C Hamano Date: Wed, 20 Dec 2006 21:57:59 +0000 (-0800) Subject: Merge branch 'jc/branch-remove-remote' X-Git-Tag: v1.5.0-rc0~55 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/55e268e7ed9638239e80e0fcd5ebe1c875a985fb?ds=inline;hp=-c Merge branch 'jc/branch-remove-remote' * jc/branch-remove-remote: git-branch -d: do not stop at the first failure. Teach git-branch to delete tracking branches with -r -d --- 55e268e7ed9638239e80e0fcd5ebe1c875a985fb diff --combined builtin-branch.c index 515330c155,011ef3a265..903d5cf056 --- a/builtin-branch.c +++ b/builtin-branch.c @@@ -5,15 -5,19 +5,19 @@@ * Based on git-branch.sh by Junio C Hamano. */ -#include "color.h" #include "cache.h" +#include "color.h" #include "refs.h" #include "commit.h" #include "builtin.h" static const char builtin_branch_usage[] = - "git-branch (-d | -D) | [-l] [-f] [] | (-m | -M) [] | [-r | -a] [-v [--abbrev=]]"; + "git-branch [-r] (-d | -D) | [-l] [-f] [] | (-m | -M) [] | [-r | -a] [-v [--abbrev=]]"; + #define REF_UNKNOWN_TYPE 0x00 + #define REF_LOCAL_BRANCH 0x01 + #define REF_REMOTE_BRANCH 0x02 + #define REF_TAG 0x04 static const char *head; static unsigned char head_sha1[20]; @@@ -89,12 -93,28 +93,28 @@@ static int in_merge_bases(const unsigne return ret; } - static void delete_branches(int argc, const char **argv, int force) + static int delete_branches(int argc, const char **argv, int force, int kinds) { struct commit *rev, *head_rev = head_rev; unsigned char sha1[20]; - char *name; + char *name = NULL; + const char *fmt, *remote; int i; + int ret = 0; + + switch (kinds) { + case REF_REMOTE_BRANCH: + fmt = "refs/remotes/%s"; + remote = "remote "; + force = 1; + break; + case REF_LOCAL_BRANCH: + fmt = "refs/heads/%s"; + remote = ""; + break; + default: + die("cannot use -a with -d"); + } if (!force) { head_rev = lookup_commit_reference(head_sha1); @@@ -102,16 -122,30 +122,30 @@@ die("Couldn't look up commit object for HEAD"); } for (i = 0; i < argc; i++) { - if (!strcmp(head, argv[i])) - die("Cannot delete the branch you are currently on."); + if (kinds == REF_LOCAL_BRANCH && !strcmp(head, argv[i])) { + error("Cannot delete the branch '%s' " + "which you are currently on.", argv[i]); + ret = 1; + continue; + } + + if (name) + free(name); - name = xstrdup(mkpath("refs/heads/%s", argv[i])); - if (!resolve_ref(name, sha1, 1, NULL)) - die("Branch '%s' not found.", argv[i]); + name = xstrdup(mkpath(fmt, argv[i])); + if (!resolve_ref(name, sha1, 1, NULL)) { + error("%sbranch '%s' not found.", + remote, argv[i]); + ret = 1; + continue; + } rev = lookup_commit_reference(sha1); - if (!rev) - die("Couldn't look up commit object for '%s'", name); + if (!rev) { + error("Couldn't look up commit object for '%s'", name); + ret = 1; + continue; + } /* This checks whether the merge bases of branch and * HEAD contains branch -- which means that the HEAD @@@ -120,26 -154,28 +154,28 @@@ if (!force && !in_merge_bases(sha1, rev, head_rev)) { - fprintf(stderr, - "The branch '%s' is not a strict subset of your current HEAD.\n" - "If you are sure you want to delete it, run 'git branch -D %s'.\n", - argv[i], argv[i]); - exit(1); + error("The branch '%s' is not a strict subset of " + "your current HEAD.\n" + "If you are sure you want to delete it, " + "run 'git branch -D %s'.", argv[i], argv[i]); + ret = 1; + continue; } - if (delete_ref(name, sha1)) - printf("Error deleting branch '%s'\n", argv[i]); - else - printf("Deleted branch %s.\n", argv[i]); + if (delete_ref(name, sha1)) { + error("Error deleting %sbranch '%s'", remote, + argv[i]); + ret = 1; + } else + printf("Deleted %sbranch %s.\n", remote, argv[i]); - free(name); } - } - #define REF_UNKNOWN_TYPE 0x00 - #define REF_LOCAL_BRANCH 0x01 - #define REF_REMOTE_BRANCH 0x02 - #define REF_TAG 0x04 + if (name) + free(name); + + return(ret); + } struct ref_item { char *name; @@@ -435,7 -471,7 +471,7 @@@ int cmd_branch(int argc, const char **a head += 11; if (delete) - delete_branches(argc - i, argv + i, force_delete); + return delete_branches(argc - i, argv + i, force_delete, kinds); else if (i == argc) print_ref_list(kinds, verbose, abbrev); else if (rename && (i == argc - 1))