6 git-name-rev - Find symbolic names for given revs
12 'git name-rev' [--tags] [--refs=<pattern>]
13 ( --all | --stdin | <commit-ish>... )
17 Finds symbolic names suitable for human digestion for revisions given in any
18 format parsable by 'git rev-parse'.
25 Do not use branch names, but only tags to name the commits
28 Only use refs whose names match a given shell pattern. The pattern
29 can be one of branch name, tag name or fully qualified ref name.
32 List all commits reachable from all refs
35 Transform stdin by substituting all the 40-character SHA-1
36 hexes (say $hex) with "$hex ($rev_name)". When used with
37 --name-only, substitute with "$rev_name", omitting $hex
38 altogether. Intended for the scripter's use.
41 Instead of printing both the SHA-1 and the name, print only
42 the name. If given with --tags the usual tag prefix of
43 "tags/" is also omitted from the name, matching the output
44 of `git-describe` more closely.
47 Die with error code != 0 when a reference is undefined,
48 instead of printing `undefined`.
51 Show uniquely abbreviated commit object as fallback.
56 Given a commit, find out where it is relative to the local refs. Say somebody
57 wrote you about that fantastic commit 33db5f4d9027a10e477ccf054b2c1ab94f74c85a.
58 Of course, you look into the commit, but that only tells you what happened, but
64 % git name-rev 33db5f4d9027a10e477ccf054b2c1ab94f74c85a
65 33db5f4d9027a10e477ccf054b2c1ab94f74c85a tags/v0.99~940
68 Now you are wiser, because you know that it happened 940 revisions before v0.99.
70 Another nice thing you can do is:
73 % git log | git name-rev --stdin
78 Part of the linkgit:git[1] suite