.mailmap: update long-lost friends with multiple defunct addresses
[alt-git.git] / Documentation / git-name-rev.txt
blob6b0f1ba75fc98dedf7b940355274ad25d3b458c5
1 git-name-rev(1)
2 ===============
4 NAME
5 ----
6 git-name-rev - Find symbolic names for given revs
9 SYNOPSIS
10 --------
11 [verse]
12 'git name-rev' [--tags] [--refs=<pattern>]
13                ( --all | --stdin | <committish>... )
15 DESCRIPTION
16 -----------
17 Finds symbolic names suitable for human digestion for revisions given in any
18 format parsable by 'git rev-parse'.
21 OPTIONS
22 -------
24 --tags::
25         Do not use branch names, but only tags to name the commits
27 --refs=<pattern>::
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.
31 --all::
32         List all commits reachable from all refs
34 --stdin::
35         Read from stdin, append "(<rev_name>)" to all sha1's of nameable
36         commits, and pass to stdout
38 --name-only::
39         Instead of printing both the SHA-1 and the name, print only
40         the name.  If given with --tags the usual tag prefix of
41         "tags/" is also omitted from the name, matching the output
42         of `git-describe` more closely.
44 --no-undefined::
45         Die with error code != 0 when a reference is undefined,
46         instead of printing `undefined`.
48 --always::
49         Show uniquely abbreviated commit object as fallback.
51 EXAMPLE
52 -------
54 Given a commit, find out where it is relative to the local refs. Say somebody
55 wrote you about that fantastic commit 33db5f4d9027a10e477ccf054b2c1ab94f74c85a.
56 Of course, you look into the commit, but that only tells you what happened, but
57 not the context.
59 Enter 'git name-rev':
61 ------------
62 % git name-rev 33db5f4d9027a10e477ccf054b2c1ab94f74c85a
63 33db5f4d9027a10e477ccf054b2c1ab94f74c85a tags/v0.99~940
64 ------------
66 Now you are wiser, because you know that it happened 940 revisions before v0.99.
68 Another nice thing you can do is:
70 ------------
71 % git log | git name-rev --stdin
72 ------------
74 GIT
75 ---
76 Part of the linkgit:git[1] suite