blob: b231dbb947791bb4fc5cde552e8c736b3558ca0a [file] [log] [blame]
Junio C Hamanoab008762005-12-28 02:33:001git-describe(1)
2===============
3
4NAME
5----
Junio C Hamano01078922006-03-10 00:31:476git-describe - Show the most recent tag that is reachable from a commit
Junio C Hamanoab008762005-12-28 02:33:007
8
9SYNOPSIS
10--------
Junio C Hamanofce7c7e2008-07-02 03:06:3811'git describe' [--all] [--tags] [--contains] [--abbrev=<n>] <committish>...
Junio C Hamanoab008762005-12-28 02:33:0012
13DESCRIPTION
14-----------
15The command finds the most recent tag that is reachable from a
Junio C Hamano2fbcd212008-05-14 22:26:0716commit. If the tag points to the commit, then only the tag is
17shown. Otherwise, it suffixes the tag name with the number of
18additional commits on top of the tagged object and the
19abbreviated object name of the most recent commit.
Junio C Hamanoab008762005-12-28 02:33:0020
Junio C Hamano7d06a8a2008-10-20 05:42:3321By default (without --all or --tags) `git describe` only shows
22annotated tags. For more information about creating annotated tags
23see the -a and -s options to linkgit:git-tag[1].
Junio C Hamanoab008762005-12-28 02:33:0024
25OPTIONS
26-------
Junio C Hamano9e395072008-07-31 22:11:2127<committish>...::
28Committish object names to describe.
Junio C Hamanoab008762005-12-28 02:33:0029
30--all::
31Instead of using only the annotated tags, use any ref
Junio C Hamano7d06a8a2008-10-20 05:42:3332found in `.git/refs/`. This option enables matching
33any known branch, remote branch, or lightweight tag.
Junio C Hamanoab008762005-12-28 02:33:0034
35--tags::
36Instead of using only the annotated tags, use any tag
Junio C Hamano7d06a8a2008-10-20 05:42:3337found in `.git/refs/tags`. This option enables matching
38a lightweight (non-annotated) tag.
Junio C Hamanoab008762005-12-28 02:33:0039
Junio C Hamano5e284b42007-05-22 07:23:3740--contains::
41Instead of finding the tag that predates the commit, find
42the tag that comes after the commit, and thus contains it.
43Automatically implies --tags.
44
Junio C Hamanoab008762005-12-28 02:33:0045--abbrev=<n>::
Junio C Hamano22bcc112009-01-24 08:05:1846Instead of using the default 7 hexadecimal digits as the
Junio C Hamanoab008762005-12-28 02:33:0047abbreviated object name, use <n> digits.
48
Junio C Hamanoedd2b0a2007-01-15 06:12:4549--candidates=<n>::
50Instead of considering only the 10 most recent tags as
51candidates to describe the input committish consider
52up to <n> candidates. Increasing <n> above 10 will take
53slightly longer but may produce a more accurate result.
Junio C Hamano24bc09a2008-02-28 00:27:4454An <n> of 0 will cause only exact matches to be output.
55
56--exact-match::
57Only output exact matches (a tag directly references the
58supplied commit). This is a synonym for --candidates=0.
Junio C Hamanoedd2b0a2007-01-15 06:12:4559
60--debug::
61Verbosely display information about the searching strategy
62being employed to standard error. The tag name will still
63be printed to standard out.
Junio C Hamanoab008762005-12-28 02:33:0064
Junio C Hamano4f1d8c42008-03-03 02:01:1665--long::
66Always output the long format (the tag, the number of commits
67and the abbreviated commit name) even when it matches a tag.
68This is useful when you want to see parts of the commit object name
69in "describe" output, even when the commit in question happens to be
70a tagged version. Instead of just emitting the tag name, it will
71describe such a commit as v1.2-0-deadbeef (0th commit since tag v1.2
72that points at object deadbeef....).
73
Junio C Hamano9c334152008-02-12 03:18:5274--match <pattern>::
75Only consider tags matching the given pattern (can be used to avoid
76leaking private tags made from the repository).
77
Junio C Hamanoeb415992008-06-08 22:49:4778--always::
79Show uniquely abbreviated commit object as fallback.
80
Junio C Hamanoab008762005-12-28 02:33:0081EXAMPLES
82--------
83
84With something like git.git current tree, I get:
85
Junio C Hamanofce7c7e2008-07-02 03:06:3886[torvalds@g5 git]$ git describe parent
Junio C Hamanoa890c4f2007-01-28 10:29:2187v1.0.4-14-g2414721
Junio C Hamanoab008762005-12-28 02:33:0088
89i.e. the current head of my "parent" branch is based on v1.0.4,
Junio C Hamano6efe3022009-01-13 16:47:5690but since it has a few commits on top of that,
Junio C Hamanoa890c4f2007-01-28 10:29:2191describe has added the number of additional commits ("14") and
92an abbreviated object name for the commit itself ("2414721")
93at the end.
94
95The number of additional commits is the number
96of commits which would be displayed by "git log v1.0.4..parent".
97The hash suffix is "-g" + 7-char abbreviation for the tip commit
98of parent (which was `2414721b194453f058079d897d13c4e377f92dc6`).
Junio C Hamanoab008762005-12-28 02:33:0099
Junio C Hamanoba4b9282008-07-06 05:20:31100Doing a 'git-describe' on a tag-name will just show the tag name:
Junio C Hamanoab008762005-12-28 02:33:00101
Junio C Hamanofce7c7e2008-07-02 03:06:38102[torvalds@g5 git]$ git describe v1.0.4
Junio C Hamanoab008762005-12-28 02:33:00103v1.0.4
104
105With --all, the command can use branch heads as references, so
106the output shows the reference path as well:
107
108[torvalds@g5 git]$ git describe --all --abbrev=4 v1.0.5^2
Junio C Hamanoa890c4f2007-01-28 10:29:21109tags/v1.0.0-21-g975b
Junio C Hamanoab008762005-12-28 02:33:00110
111[torvalds@g5 git]$ git describe --all HEAD^
Junio C Hamanoa890c4f2007-01-28 10:29:21112heads/lt/describe-7-g975b
113
114With --abbrev set to 0, the command can be used to find the
115closest tagname without any suffix:
116
117[torvalds@g5 git]$ git describe --abbrev=0 v1.0.5^2
118tags/v1.0.0
Junio C Hamanoab008762005-12-28 02:33:00119
Junio C Hamanoedd2b0a2007-01-15 06:12:45120SEARCH STRATEGY
121---------------
122
Junio C Hamanoba4b9282008-07-06 05:20:31123For each committish supplied, 'git-describe' will first look for
Junio C Hamanoedd2b0a2007-01-15 06:12:45124a tag which tags exactly that commit. Annotated tags will always
125be preferred over lightweight tags, and tags with newer dates will
126always be preferred over tags with older dates. If an exact match
127is found, its name will be output and searching will stop.
128
Junio C Hamanoba4b9282008-07-06 05:20:31129If an exact match was not found, 'git-describe' will walk back
Junio C Hamanoedd2b0a2007-01-15 06:12:45130through the commit history to locate an ancestor commit which
131has been tagged. The ancestor's tag will be output along with an
132abbreviation of the input committish's SHA1.
133
134If multiple tags were found during the walk then the tag which
135has the fewest commits different from the input committish will be
136selected and output. Here fewest commits different is defined as
Junio C Hamanofce7c7e2008-07-02 03:06:38137the number of commits which would be shown by `git log tag..input`
Junio C Hamanoedd2b0a2007-01-15 06:12:45138will be the smallest number of commits possible.
139
Junio C Hamanoab008762005-12-28 02:33:00140
141Author
142------
143Written by Linus Torvalds <torvalds@osdl.org>, but somewhat
Junio C Hamano0868a302008-07-22 09:20:44144butchered by Junio C Hamano <gitster@pobox.com>. Later significantly
Junio C Hamanoa890c4f2007-01-28 10:29:21145updated by Shawn Pearce <spearce@spearce.org>.
Junio C Hamanoab008762005-12-28 02:33:00146
147Documentation
148--------------
149Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
150
151GIT
152---
Junio C Hamanof7c042d2008-06-06 22:50:53153Part of the linkgit:git[1] suite