Add git-name-rev
authorJohannes Schindelin <Johannes.Schindelin@gmx.de>
Wed, 26 Oct 2005 13:10:20 +0000 (15:10 +0200)
committerJunio C Hamano <junkio@cox.net>
Wed, 26 Oct 2005 23:31:58 +0000 (16:31 -0700)
commitbd321bcc51e95f644ac5335abe673afcbcaade62
tree063a1f66314a590f11dc419b31674ad7bc04714d
parentf3123c4ab3d3698262e59561ac084de45b10365a
Add git-name-rev

git-name-rev tries to find nice symbolic names for commits. It does so by
walking the commits from the refs. When the symbolic name is ambiguous, the
following heuristic is applied: Try to avoid too many ~'s, and if two ambiguous
names have the same count of ~'s, take the one whose last number is smaller.

With "--tags", the names are derived only from tags.

With "--stdin", the stdin is parsed, and after every sha1 for which a name
could be found, the name is appended. (Try "git log | git name-rev --stdin".)

Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Documentation/git-name-rev.txt [new file with mode: 0644]
Makefile
name-rev.c [new file with mode: 0644]