]> git.ipfire.org Git - thirdparty/git.git/commit
Clean up find_unique_abbrev() callers
authorJunio C Hamano <gitster@pobox.com>
Sun, 2 Mar 2008 07:43:32 +0000 (23:43 -0800)
committerJunio C Hamano <gitster@pobox.com>
Sun, 2 Mar 2008 07:52:13 +0000 (23:52 -0800)
commit2efb3b061709bd204f11d54c177dae89e4af0f67
tree176701656ed7bc90a175f31b944b399c3b7ebdf8
parentb66fde9a287f64ed81d4d4a1639997ad5eedb432
Clean up find_unique_abbrev() callers

Now find_unique_abbrev() never returns NULL, there is no need for callers
to prepare for seeing NULL and fall back to giving the full 40-hexdigits.

While we are at it, drop "..." in the "git reset" output that reports the
location of the new HEAD, between the abbreviated commit object name and
the one line commit summary.  Because we are always showing the HEAD
(which cannot be missing!), we never had a case where we show the full 40
hexdigits that is not followed by three dots, and these three dots were
stealing 3 columns from the precious horizontal screen real estate out of
80 that can better be used for the one line commit summary.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-reset.c
builtin-send-pack.c
diff.c