diff options
author | René Scharfe <l.s.r@web.de> | 2021-08-27 20:35:35 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-08-27 15:11:18 -0700 |
commit | 597a97748924e8ce0b829f668acc8f7a6849b05f (patch) | |
tree | f49d290adc2826cc3100b65901c3dd70e6aec392 /builtin/branch.c | |
parent | Git 2.33 (diff) | |
download | tgif-597a97748924e8ce0b829f668acc8f7a6849b05f.tar.xz |
branch: allow deleting dangling branches with --force
git branch only allows deleting branches that point to valid commits.
Skip that check if --force is given, as the caller is indicating with
it that they know what they are doing and accept the consequences.
This allows deleting dangling branches, which previously had to be
reset to a valid start-point using --force first.
Reported-by: Ulrich Windl <Ulrich.Windl@rz.uni-regensburg.de>
Helped-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Helped-by: Junio C Hamano <gitster@pobox.com>
Signed-off-by: René Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/branch.c')
-rw-r--r-- | builtin/branch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/branch.c b/builtin/branch.c index b23b1d1752..03c7b7253a 100644 --- a/builtin/branch.c +++ b/builtin/branch.c @@ -168,7 +168,7 @@ static int check_branch_commit(const char *branchname, const char *refname, int kinds, int force) { struct commit *rev = lookup_commit_reference(the_repository, oid); - if (!rev) { + if (!force && !rev) { error(_("Couldn't look up commit object for '%s'"), refname); return -1; } |