6 git-name-rev - Find symbolic names for given revs
11 'git-name-rev' [--tags] [--refs=<pattern>]
12 ( --all | --stdin | <committish>... )
16 Finds symbolic names suitable for human digestion for revisions given in any
17 format parsable by git-rev-parse.
24 Do not use branch names, but only tags to name the commits
27 Only use refs whose names match a given shell pattern.
30 List all commits reachable from all refs
33 Read from stdin, append "(<rev_name>)" to all sha1's of nameable
34 commits, and pass to stdout
39 Given a commit, find out where it is relative to the local refs. Say somebody
40 wrote you about that fantastic commit 33db5f4d9027a10e477ccf054b2c1ab94f74c85a.
41 Of course, you look into the commit, but that only tells you what happened, but
47 % git name-rev 33db5f4d9027a10e477ccf054b2c1ab94f74c85a
48 33db5f4d9027a10e477ccf054b2c1ab94f74c85a tags/v0.99^0~940
51 Now you are wiser, because you know that it happened 940 revisions before v0.99.
53 Another nice thing you can do is:
56 % git log | git name-rev --stdin
62 Written by Johannes Schindelin <Johannes.Schindelin@gmx.de>
66 Documentation by Johannes Schindelin.
70 Part of the gitlink:git[7] suite