From 4cdf78bf964912698ab33579977f21a3e0b832ed Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Tue, 27 Dec 2005 14:49:22 -0800 Subject: [PATCH] git-describe: use find_unique_abbrev() Just in case 8 hexadecimal digits are not enough. We could use shorter default if we wanted to. Signed-off-by: Junio C Hamano --- describe.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/describe.c b/describe.c index e1b6588c..ba49d002 100644 --- a/describe.c +++ b/describe.c @@ -95,7 +95,8 @@ static void describe(struct commit *cmit) struct commit *c = pop_most_recent_commit(&list, SEEN); n = match(c); if (n) { - printf("%s-g%.8s\n", n->path, sha1_to_hex(cmit->object.sha1)); + printf("%s-g%s\n", n->path, + find_unique_abbrev(cmit->object.sha1, 8)); return; } } -- 2.11.0