Skip to content

Commit 1c9f544

Browse files
committed
Merge branch 'bc/maint-1.6.1-branch-deleted-was' into maint-1.6.1
* bc/maint-1.6.1-branch-deleted-was: git-branch: display "was sha1" on branch deletion rather than just "sha1"
2 parents 1f398ee + 76aac71 commit 1c9f544

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

builtin-branch.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ static int delete_branches(int argc, const char **argv, int force, int kinds)
165165
ret = 1;
166166
} else {
167167
struct strbuf buf = STRBUF_INIT;
168-
printf("Deleted %sbranch %s (%s).\n", remote, argv[i],
168+
printf("Deleted %sbranch %s (was %s).\n", remote, argv[i],
169169
find_unique_abbrev(sha1, DEFAULT_ABBREV));
170170
strbuf_addf(&buf, "branch.%s", argv[i]);
171171
if (git_config_rename_section(buf.buf, NULL) < 0)

t/t3200-branch.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ test_expect_success 'test deleting branch deletes branch config' \
195195
test_expect_success 'test deleting branch without config' \
196196
'git branch my7 s &&
197197
sha1=$(git rev-parse my7 | cut -c 1-7) &&
198-
test "$(git branch -d my7 2>&1)" = "Deleted branch my7 ($sha1)."'
198+
test "$(git branch -d my7 2>&1)" = "Deleted branch my7 (was $sha1)."'
199199

200200
test_expect_success 'test --track without .fetch entries' \
201201
'git branch --track my8 &&

0 commit comments

Comments
 (0)