diff options
author | Kazuki Yamaguchi <k@rhe.jp> | 2016-03-29 18:38:39 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-03-29 13:05:53 -0700 |
commit | f292244c04d8109ee32a45016ce08984fbd925f0 (patch) | |
tree | 2c492ec3099cd457f385cde6c1fc833f5bb8157d /builtin | |
parent | a0feb1b1870fbb74f65d6a8951e4b2e2a2347ecf (diff) | |
download | git-f292244c04d8109ee32a45016ce08984fbd925f0.tar.gz git-f292244c04d8109ee32a45016ce08984fbd925f0.tar.xz |
branch -d: refuse deleting a branch which is currently checked out
When a branch is checked out by current working tree, deleting the
branch is forbidden. However when the branch is checked out only by
other working trees, deleting incorrectly succeeds.
Use find_shared_symref() to check if the branch is in use, not just
comparing with the current working tree's HEAD.
Helped-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Kazuki Yamaguchi <k@rhe.jp>
Reviewed-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/branch.c | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/builtin/branch.c b/builtin/branch.c index 7b45b6bd6..8885d9f8e 100644 --- a/builtin/branch.c +++ b/builtin/branch.c @@ -20,6 +20,7 @@ #include "utf8.h" #include "wt-status.h" #include "ref-filter.h" +#include "worktree.h" static const char * const builtin_branch_usage[] = { N_("git branch [<options>] [-r | -a] [--merged | --no-merged]"), @@ -215,16 +216,21 @@ static int delete_branches(int argc, const char **argv, int force, int kinds, int flags = 0; strbuf_branchname(&bname, argv[i]); - if (kinds == FILTER_REFS_BRANCHES && !strcmp(head, bname.buf)) { - error(_("Cannot delete the branch '%s' " - "which you are currently on."), bname.buf); - ret = 1; - continue; - } - free(name); - name = mkpathdup(fmt, bname.buf); + + if (kinds == FILTER_REFS_BRANCHES) { + char *worktree = find_shared_symref("HEAD", name); + if (worktree) { + error(_("Cannot delete branch '%s' " + "checked out at '%s'"), + bname.buf, worktree); + free(worktree); + ret = 1; + continue; + } + } + target = resolve_ref_unsafe(name, RESOLVE_REF_READING | RESOLVE_REF_NO_RECURSE |