author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | |
Wed, 26 Oct 2005 13:10:20 +0000 (15:10 +0200) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Wed, 26 Oct 2005 23:31:58 +0000 (16:31 -0700) | ||
commit | bd321bcc51e95f644ac5335abe673afcbcaade62 | |
tree | 063a1f66314a590f11dc419b31674ad7bc04714d | tree | snapshot |
parent | f3123c4ab3d3698262e59561ac084de45b10365a | commit | diff |
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>
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] | blob |
Makefile | diff | blob | history | |
name-rev.c | [new file with mode: 0644] | blob |