Merge branch 'tb/commit-graph-genv2-upgrade-fix' into maint
[git/debian.git] / Documentation / git-name-rev.txt
blobec8a27ce8bf8d689bb5f64554dd5426ce38262c0
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 | <commit-ish>... )
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. If
30         given multiple times, use refs whose names match any of the given shell
31         patterns. Use `--no-refs` to clear any previous ref patterns given.
33 --exclude=<pattern>::
34         Do not use any ref whose name matches a given shell pattern. The
35         pattern can be one of branch name, tag name or fully qualified ref
36         name. If given multiple times, a ref will be excluded when it matches
37         any of the given patterns. When used together with --refs, a ref will
38         be used as a match only when it matches at least one --refs pattern and
39         does not match any --exclude patterns. Use `--no-exclude` to clear the
40         list of exclude patterns.
42 --all::
43         List all commits reachable from all refs
45 --annotate-stdin::
46         Transform stdin by substituting all the 40-character SHA-1
47         hexes (say $hex) with "$hex ($rev_name)".  When used with
48         --name-only, substitute with "$rev_name", omitting $hex
49         altogether.
51 For example:
53 -----------
54 $ cat sample.txt
56 An abbreviated revision 2ae0a9cb82 will not be substituted.
57 The full name after substitution is 2ae0a9cb8298185a94e5998086f380a355dd8907,
58 while its tree object is 70d105cc79e63b81cfdcb08a15297c23e60b07ad
60 $ git name-rev --annotate-stdin <sample.txt
62 An abbreviated revision 2ae0a9cb82 will not be substituted.
63 The full name after substitution is 2ae0a9cb8298185a94e5998086f380a355dd8907 (master),
64 while its tree object is 70d105cc79e63b81cfdcb08a15297c23e60b07ad
66 $ git name-rev --name-only --annotate-stdin <sample.txt
68 An abbreviated revision 2ae0a9cb82 will not be substituted.
69 The full name after substitution is master,
70 while its tree object is 70d105cc79e63b81cfdcb08a15297c23e60b07ad
71 -----------
73 --stdin::
74         This option is deprecated in favor of 'git name-rev --annotate-stdin'.
75         They are functionally equivalent.
77 --name-only::
78         Instead of printing both the SHA-1 and the name, print only
79         the name.  If given with --tags the usual tag prefix of
80         "tags/" is also omitted from the name, matching the output
81         of `git-describe` more closely.
83 --no-undefined::
84         Die with error code != 0 when a reference is undefined,
85         instead of printing `undefined`.
87 --always::
88         Show uniquely abbreviated commit object as fallback.
90 EXAMPLES
91 --------
93 Given a commit, find out where it is relative to the local refs. Say somebody
94 wrote you about that fantastic commit 33db5f4d9027a10e477ccf054b2c1ab94f74c85a.
95 Of course, you look into the commit, but that only tells you what happened, but
96 not the context.
98 Enter 'git name-rev':
100 ------------
101 % git name-rev 33db5f4d9027a10e477ccf054b2c1ab94f74c85a
102 33db5f4d9027a10e477ccf054b2c1ab94f74c85a tags/v0.99~940
103 ------------
105 Now you are wiser, because you know that it happened 940 revisions before v0.99.
107 Another nice thing you can do is:
109 ------------
110 % git log | git name-rev --stdin
111 ------------
115 Part of the linkgit:git[1] suite