summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: de0db42)
raw | patch | inline | side by side (parent: de0db42)
author | Brandon Casey <casey@nrlssc.navy.mil> | |
Fri, 12 Dec 2008 23:20:07 +0000 (17:20 -0600) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Sat, 13 Dec 2008 04:42:59 +0000 (20:42 -0800) |
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 <casey@nrlssc.navy.mil>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
sha1 of the branch's tip commit.
Update t3200 test to match the change in output.
Signed-off-by: Brandon Casey <casey@nrlssc.navy.mil>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-branch.c | patch | blob | history | |
t/t3200-branch.sh | patch | blob | history |
diff --git a/builtin-branch.c b/builtin-branch.c
index 494cbac0057e8b145d54eed8713adc7203d97efb..02fa38fd3b13b5c17aa23edbfd79f91a052adf76 100644 (file)
--- a/builtin-branch.c
+++ b/builtin-branch.c
ret = 1;
} else {
struct strbuf buf = STRBUF_INIT;
- printf("Deleted %sbranch %s.\n", remote, argv[i]);
+ printf("Deleted %sbranch %s (%s).\n", remote, argv[i],
+ find_unique_abbrev(sha1, DEFAULT_ABBREV));
strbuf_addf(&buf, "branch.%s", argv[i]);
if (git_config_rename_section(buf.buf, NULL) < 0)
warning("Update of config-file failed");
diff --git a/t/t3200-branch.sh b/t/t3200-branch.sh
index 25e9971fd86af10c1031f4e8061c31a0c80725a7..61a2010f5b0e24a50c6cddda9a17bad67f3214b8 100755 (executable)
--- a/t/t3200-branch.sh
+++ b/t/t3200-branch.sh
test_expect_success 'test deleting branch without config' \
'git branch my7 s &&
- test "$(git branch -d my7 2>&1)" = "Deleted branch my7."'
+ sha1=$(git rev-parse my7 | cut -c 1-7) &&
+ test "$(git branch -d my7 2>&1)" = "Deleted branch my7 ($sha1)."'
test_expect_success 'test --track without .fetch entries' \
'git branch --track my8 &&