]>
Commit | Line | Data |
---|---|---|
bd321bcc JS |
1 | git-name-rev(1) |
2 | =============== | |
3 | ||
4 | NAME | |
5 | ---- | |
7bd7f280 | 6 | git-name-rev - Find symbolic names for given revs |
bd321bcc JS |
7 | |
8 | ||
9 | SYNOPSIS | |
10 | -------- | |
e448ff87 | 11 | [verse] |
b1889c36 | 12 | 'git name-rev' [--tags] [--refs=<pattern>] |
2afc29aa | 13 | ( --all | --stdin | <committish>... ) |
bd321bcc JS |
14 | |
15 | DESCRIPTION | |
16 | ----------- | |
17 | Finds symbolic names suitable for human digestion for revisions given in any | |
0b444cdb | 18 | format parsable by 'git rev-parse'. |
bd321bcc JS |
19 | |
20 | ||
21 | OPTIONS | |
22 | ------- | |
23 | ||
24 | --tags:: | |
25 | Do not use branch names, but only tags to name the commits | |
26 | ||
2afc29aa JS |
27 | --refs=<pattern>:: |
28 | Only use refs whose names match a given shell pattern. | |
29 | ||
bd321bcc JS |
30 | --all:: |
31 | List all commits reachable from all refs | |
32 | ||
33 | --stdin:: | |
82e5a82f | 34 | Read from stdin, append "(<rev_name>)" to all sha1's of nameable |
bd321bcc JS |
35 | commits, and pass to stdout |
36 | ||
23615708 SP |
37 | --name-only:: |
38 | Instead of printing both the SHA-1 and the name, print only | |
39 | the name. If given with --tags the usual tag prefix of | |
02783075 | 40 | "tags/" is also omitted from the name, matching the output |
372c7676 | 41 | of `git-describe` more closely. |
23615708 | 42 | |
eba1351f SB |
43 | --no-undefined:: |
44 | Die with error code != 0 when a reference is undefined, | |
45 | instead of printing `undefined`. | |
46 | ||
47 | --always:: | |
48 | Show uniquely abbreviated commit object as fallback. | |
49 | ||
bd321bcc JS |
50 | EXAMPLE |
51 | ------- | |
52 | ||
53 | Given a commit, find out where it is relative to the local refs. Say somebody | |
2a75848e | 54 | wrote you about that fantastic commit 33db5f4d9027a10e477ccf054b2c1ab94f74c85a. |
bd321bcc JS |
55 | Of course, you look into the commit, but that only tells you what happened, but |
56 | not the context. | |
57 | ||
0b444cdb | 58 | Enter 'git name-rev': |
bd321bcc JS |
59 | |
60 | ------------ | |
61 | % git name-rev 33db5f4d9027a10e477ccf054b2c1ab94f74c85a | |
ee837244 | 62 | 33db5f4d9027a10e477ccf054b2c1ab94f74c85a tags/v0.99~940 |
bd321bcc JS |
63 | ------------ |
64 | ||
65 | Now you are wiser, because you know that it happened 940 revisions before v0.99. | |
66 | ||
67 | Another nice thing you can do is: | |
68 | ||
69 | ------------ | |
70 | % git log | git name-rev --stdin | |
71 | ------------ | |
72 | ||
73 | ||
74 | Author | |
75 | ------ | |
76 | Written by Johannes Schindelin <Johannes.Schindelin@gmx.de> | |
77 | ||
78 | Documentation | |
79 | -------------- | |
80 | Documentation by Johannes Schindelin. | |
81 | ||
82 | GIT | |
83 | --- | |
9e1f0a85 | 84 | Part of the linkgit:git[1] suite |