Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
git-describe: use find_unique_abbrev()
author
Junio C Hamano
<junkio@cox.net>
Tue, 27 Dec 2005 22:49:22 +0000
(14:49 -0800)
committer
Junio C Hamano
<junkio@cox.net>
Wed, 28 Dec 2005 01:57:27 +0000
(17:57 -0800)
Just in case 8 hexadecimal digits are not enough. We could use
shorter default if we wanted to.
Signed-off-by: Junio C Hamano <junkio@cox.net>
describe.c
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
635d413
)
diff --git
a/describe.c
b/describe.c
index e1b6588c9b8d0bd70702a56e182b2352dacc4386..ba49d0027092393a6b0b578dafdbfef15f791eaf 100644
(file)
--- 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;
}
}