Skip to content

Commit a126ed0

Browse files
drafnelgitster
authored andcommitted
git-branch: display sha1 on branch deletion
Make it easier to recover from a mistaken branch deletion by displaying the sha1 of the branch's tip commit. Update t3200 test to match the change in output. Signed-off-by: Brandon Casey <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent de0db42 commit a126ed0

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

builtin-branch.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,8 @@ 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.\n", remote, argv[i]);
168+
printf("Deleted %sbranch %s (%s).\n", remote, argv[i],
169+
find_unique_abbrev(sha1, DEFAULT_ABBREV));
169170
strbuf_addf(&buf, "branch.%s", argv[i]);
170171
if (git_config_rename_section(buf.buf, NULL) < 0)
171172
warning("Update of config-file failed");

t/t3200-branch.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,8 @@ test_expect_success 'test deleting branch deletes branch config' \
194194

195195
test_expect_success 'test deleting branch without config' \
196196
'git branch my7 s &&
197-
test "$(git branch -d my7 2>&1)" = "Deleted branch my7."'
197+
sha1=$(git rev-parse my7 | cut -c 1-7) &&
198+
test "$(git branch -d my7 2>&1)" = "Deleted branch my7 ($sha1)."'
198199

199200
test_expect_success 'test --track without .fetch entries' \
200201
'git branch --track my8 &&

0 commit comments

Comments
 (0)