X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=builtin-branch.c;h=02fa38fd3b13b5c17aa23edbfd79f91a052adf76;hb=141b6b83d7ca5bd32d55a0a7e08384084d081557;hp=494cbac0057e8b145d54eed8713adc7203d97efb;hpb=cab7d7d827365959a2713c6d9159f10401acbb51;p=git.git diff --git a/builtin-branch.c b/builtin-branch.c index 494cbac00..02fa38fd3 100644 --- a/builtin-branch.c +++ b/builtin-branch.c @@ -165,7 +165,8 @@ 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.\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");