]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-name-rev.txt
Merge branch 'js/ci-use-macos-13'
[thirdparty/git.git] / Documentation / git-name-rev.txt
CommitLineData
bd321bcc
JS
1git-name-rev(1)
2===============
3
4NAME
5----
7bd7f280 6git-name-rev - Find symbolic names for given revs
bd321bcc
JS
7
8
9SYNOPSIS
10--------
e448ff87 11[verse]
b1889c36 12'git name-rev' [--tags] [--refs=<pattern>]
9019d7dc 13 ( --all | --annotate-stdin | <commit-ish>... )
bd321bcc
JS
14
15DESCRIPTION
16-----------
17Finds symbolic names suitable for human digestion for revisions given in any
0b444cdb 18format parsable by 'git rev-parse'.
bd321bcc
JS
19
20
21OPTIONS
22-------
23
24--tags::
25 Do not use branch names, but only tags to name the commits
26
2afc29aa 27--refs=<pattern>::
98c5c4ad 28 Only use refs whose names match a given shell pattern. The pattern
4d542687 29 can be a branch name, a tag name, or a fully qualified ref name. If
290be667
JK
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.
2afc29aa 32
96415b49
JK
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.
41
bd321bcc
JS
42--all::
43 List all commits reachable from all refs
44
34ae3b70 45--annotate-stdin::
3087b615
RR
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
9019d7dc
JC
49 altogether. This option was called `--stdin` in older versions
50 of Git.
34ae3b70
JC
51+
52For example:
53+
54-----------
55$ cat sample.txt
56
57An abbreviated revision 2ae0a9cb82 will not be substituted.
58The full name after substitution is 2ae0a9cb8298185a94e5998086f380a355dd8907,
59while its tree object is 70d105cc79e63b81cfdcb08a15297c23e60b07ad
60
61$ git name-rev --annotate-stdin <sample.txt
62
63An abbreviated revision 2ae0a9cb82 will not be substituted.
64The full name after substitution is 2ae0a9cb8298185a94e5998086f380a355dd8907 (master),
65while its tree object is 70d105cc79e63b81cfdcb08a15297c23e60b07ad
66
67$ git name-rev --name-only --annotate-stdin <sample.txt
68
69An abbreviated revision 2ae0a9cb82 will not be substituted.
70The full name after substitution is master,
71while its tree object is 70d105cc79e63b81cfdcb08a15297c23e60b07ad
72-----------
73
23615708
SP
74--name-only::
75 Instead of printing both the SHA-1 and the name, print only
76 the name. If given with --tags the usual tag prefix of
02783075 77 "tags/" is also omitted from the name, matching the output
372c7676 78 of `git-describe` more closely.
23615708 79
eba1351f
SB
80--no-undefined::
81 Die with error code != 0 when a reference is undefined,
82 instead of printing `undefined`.
83
84--always::
85 Show uniquely abbreviated commit object as fallback.
86
76a8788c
NTND
87EXAMPLES
88--------
bd321bcc
JS
89
90Given a commit, find out where it is relative to the local refs. Say somebody
2a75848e 91wrote you about that fantastic commit 33db5f4d9027a10e477ccf054b2c1ab94f74c85a.
bd321bcc
JS
92Of course, you look into the commit, but that only tells you what happened, but
93not the context.
94
0b444cdb 95Enter 'git name-rev':
bd321bcc
JS
96
97------------
98% git name-rev 33db5f4d9027a10e477ccf054b2c1ab94f74c85a
ee837244 9933db5f4d9027a10e477ccf054b2c1ab94f74c85a tags/v0.99~940
bd321bcc
JS
100------------
101
102Now you are wiser, because you know that it happened 940 revisions before v0.99.
103
104Another nice thing you can do is:
105
106------------
9019d7dc 107% git log | git name-rev --annotate-stdin
bd321bcc
JS
108------------
109
bd321bcc
JS
110GIT
111---
9e1f0a85 112Part of the linkgit:git[1] suite