Skip to content

Commit 76aac71

Browse files
drafnelgitster
authored andcommitted
git-branch: display "was sha1" on branch deletion rather than just "sha1"
Make it more pleasant to read about a branch deletion by adding "was". Jeff King suggested this, and I ignored it. He was right. Update t3200 test again to match the change in output. Signed-off-by: Brandon Casey <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent a126ed0 commit 76aac71

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)