2005-10-26 15:10:20 +02:00
|
|
|
git-name-rev(1)
|
|
|
|
===============
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2006-03-09 17:24:50 +01:00
|
|
|
git-name-rev - Find symbolic names for given revs
|
2005-10-26 15:10:20 +02:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2007-05-18 15:39:33 +02:00
|
|
|
[verse]
|
2008-06-30 08:09:04 +02:00
|
|
|
'git name-rev' [--tags] [--refs=<pattern>]
|
2007-02-17 19:22:35 +01:00
|
|
|
( --all | --stdin | <committish>... )
|
2005-10-26 15:10:20 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
Finds symbolic names suitable for human digestion for revisions given in any
|
2010-01-10 00:33:00 +01:00
|
|
|
format parsable by 'git rev-parse'.
|
2005-10-26 15:10:20 +02:00
|
|
|
|
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
|
|
|
|
--tags::
|
|
|
|
Do not use branch names, but only tags to name the commits
|
|
|
|
|
2007-02-17 19:22:35 +01:00
|
|
|
--refs=<pattern>::
|
|
|
|
Only use refs whose names match a given shell pattern.
|
|
|
|
|
2005-10-26 15:10:20 +02:00
|
|
|
--all::
|
|
|
|
List all commits reachable from all refs
|
|
|
|
|
|
|
|
--stdin::
|
2013-07-07 14:43:16 +02:00
|
|
|
Transform stdin by substituting all the 40-character SHA-1
|
|
|
|
hexes (say $hex) with "$hex ($rev_name)". When used with
|
|
|
|
--name-only, substitute with "$rev_name", omitting $hex
|
|
|
|
altogether. Intended for the scripter's use.
|
2005-10-26 15:10:20 +02:00
|
|
|
|
2007-05-21 09:20:25 +02:00
|
|
|
--name-only::
|
|
|
|
Instead of printing both the SHA-1 and the name, print only
|
|
|
|
the name. If given with --tags the usual tag prefix of
|
2007-08-24 02:44:13 +02:00
|
|
|
"tags/" is also omitted from the name, matching the output
|
2008-08-02 20:58:34 +02:00
|
|
|
of `git-describe` more closely.
|
2007-05-21 09:20:25 +02:00
|
|
|
|
2008-06-08 03:36:12 +02:00
|
|
|
--no-undefined::
|
|
|
|
Die with error code != 0 when a reference is undefined,
|
|
|
|
instead of printing `undefined`.
|
|
|
|
|
|
|
|
--always::
|
|
|
|
Show uniquely abbreviated commit object as fallback.
|
|
|
|
|
2005-10-26 15:10:20 +02:00
|
|
|
EXAMPLE
|
|
|
|
-------
|
|
|
|
|
|
|
|
Given a commit, find out where it is relative to the local refs. Say somebody
|
2006-07-11 12:19:33 +02:00
|
|
|
wrote you about that fantastic commit 33db5f4d9027a10e477ccf054b2c1ab94f74c85a.
|
2005-10-26 15:10:20 +02:00
|
|
|
Of course, you look into the commit, but that only tells you what happened, but
|
|
|
|
not the context.
|
|
|
|
|
2010-01-10 00:33:00 +01:00
|
|
|
Enter 'git name-rev':
|
2005-10-26 15:10:20 +02:00
|
|
|
|
|
|
|
------------
|
|
|
|
% git name-rev 33db5f4d9027a10e477ccf054b2c1ab94f74c85a
|
2008-08-30 22:08:50 +02:00
|
|
|
33db5f4d9027a10e477ccf054b2c1ab94f74c85a tags/v0.99~940
|
2005-10-26 15:10:20 +02:00
|
|
|
------------
|
|
|
|
|
|
|
|
Now you are wiser, because you know that it happened 940 revisions before v0.99.
|
|
|
|
|
|
|
|
Another nice thing you can do is:
|
|
|
|
|
|
|
|
------------
|
|
|
|
% git log | git name-rev --stdin
|
|
|
|
------------
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|