Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrandon Casey <drafnel@gmail.com>2009-03-22 03:09:17 +0300
committerJunio C Hamano <gitster@pobox.com>2009-03-22 03:30:51 +0300
commit76aac715465b7678ca5b834ccbdcb88a3ab8a9f4 (patch)
treee172b597996ac7e31f2376fea98ca08e6412e8e8 /builtin-branch.c
parenta126ed0a01e265d7f3b2972a34e85636e12e6d34 (diff)
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 <drafnel@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-branch.c')
-rw-r--r--builtin-branch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-branch.c b/builtin-branch.c
index 02fa38fd3b..23b6949fec 100644
--- a/builtin-branch.c
+++ b/builtin-branch.c
@@ -165,7 +165,7 @@ static int delete_branches(int argc, const char **argv, int force, int kinds)
ret = 1;
} else {
struct strbuf buf = STRBUF_INIT;
- printf("Deleted %sbranch %s (%s).\n", remote, argv[i],
+ printf("Deleted %sbranch %s (was %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)