blob: 2b126c0a77f9901eea1ba5ac37a2fb2d66c4d21f [file] [log] [blame]
Junio C Hamano7fc9d692005-08-23 01:49:47 -07001git-rev-parse(1)
2================
3
4NAME
5----
Fredrik Kuivinen7bd7f282006-03-09 17:24:50 +01006git-rev-parse - Pick out and massage parameters
Junio C Hamano7fc9d692005-08-23 01:49:47 -07007
8
9SYNOPSIS
10--------
Martin von Zweigbergk7791a1d2011-07-01 22:38:26 -040011[verse]
Jonathan Niederb1889c32008-06-30 01:09:04 -050012'git rev-parse' [ --option ] <args>...
Junio C Hamano7fc9d692005-08-23 01:49:47 -070013
14DESCRIPTION
15-----------
Junio C Hamano5077fa92005-09-07 14:08:38 -070016
Thomas Ackermann2de9b712013-01-21 20:17:53 +010017Many Git porcelainish commands take mixture of flags
Junio C Hamano5077fa92005-09-07 14:08:38 -070018(i.e. parameters that begin with a dash '-') and parameters
Thomas Rast0b444cd2010-01-10 00:33:00 +010019meant for the underlying 'git rev-list' command they use internally
Jonathan Nieder483bc4f2008-06-30 13:56:34 -050020and flags and parameters for the other commands they use
Thomas Rast0b444cd2010-01-10 00:33:00 +010021downstream of 'git rev-list'. This command is used to
Junio C Hamano5077fa92005-09-07 14:08:38 -070022distinguish between them.
Junio C Hamano7fc9d692005-08-23 01:49:47 -070023
24
25OPTIONS
26-------
Pierre Habouzit21d47832007-11-04 11:30:53 +010027--parseopt::
Thomas Rast0b444cd2010-01-10 00:33:00 +010028 Use 'git rev-parse' in option parsing mode (see PARSEOPT section below).
Pierre Habouzit21d47832007-11-04 11:30:53 +010029
Uwe Kleine-König2163e3f72009-04-28 22:29:24 +020030--keep-dashdash::
Pierre Habouzit21d47832007-11-04 11:30:53 +010031 Only meaningful in `--parseopt` mode. Tells the option parser to echo
32 out the first `--` met instead of skipping it.
33
Uwe Kleine-König6e0800e2009-06-14 01:58:43 +020034--stop-at-non-option::
35 Only meaningful in `--parseopt` mode. Lets the option parser stop at
36 the first non-option argument. This can be used to parse sub-commands
Ralf Wildenhues6a5d0b02010-01-31 14:24:39 +010037 that take options themselves.
Uwe Kleine-König6e0800e2009-06-14 01:58:43 +020038
Christian Couder50325372009-04-25 06:55:26 +020039--sq-quote::
Thomas Rast0b444cd2010-01-10 00:33:00 +010040 Use 'git rev-parse' in shell quoting mode (see SQ-QUOTE
Christian Couder50325372009-04-25 06:55:26 +020041 section below). In contrast to the `--sq` option below, this
42 mode does only quoting. Nothing else is done to command input.
43
Junio C Hamano5077fa92005-09-07 14:08:38 -070044--revs-only::
45 Do not output flags and parameters not meant for
Thomas Rast0b444cd2010-01-10 00:33:00 +010046 'git rev-list' command.
Junio C Hamano5077fa92005-09-07 14:08:38 -070047
48--no-revs::
49 Do not output flags and parameters meant for
Thomas Rast0b444cd2010-01-10 00:33:00 +010050 'git rev-list' command.
Junio C Hamano5077fa92005-09-07 14:08:38 -070051
52--flags::
53 Do not output non-flag parameters.
54
55--no-flags::
56 Do not output flag parameters.
57
58--default <arg>::
59 If there is no parameter given by the user, use `<arg>`
60 instead.
61
John Keeping12b9d322013-06-16 15:18:17 +010062--prefix <arg>::
63 Behave as if 'git rev-parse' was invoked from the `<arg>`
64 subdirectory of the working tree. Any relative filenames are
65 resolved as if they are prefixed by `<arg>` and will be printed
66 in that form.
67+
68This can be used to convert arguments to a command run in a subdirectory
69so that they can still be used after moving to the top-level of the
70repository. For example:
71+
72----
73prefix=$(git rev-parse --show-prefix)
74cd "$(git rev-parse --show-toplevel)"
75eval "set -- $(git rev-parse --sq --prefix "$prefix" "$@")"
76----
77
Junio C Hamano5077fa92005-09-07 14:08:38 -070078--verify::
Michael Haggerty2db60672013-03-30 07:44:25 +010079 Verify that exactly one parameter is provided, and that it
80 can be turned into a raw 20-byte SHA-1 that can be used to
81 access the object database. If so, emit it to the standard
82 output; otherwise, error out.
83+
84If you want to make sure that the output actually names an object in
85your object database and/or can be used as a specific type of object
Ondřej Bílka17b83d72013-07-22 23:02:23 +020086you require, you can add "^{type}" peeling operator to the parameter.
Michael Haggerty2db60672013-03-30 07:44:25 +010087For example, `git rev-parse "$VAR^{commit}"` will make sure `$VAR`
88names an existing object that is a commit-ish (i.e. a commit, or an
89annotated tag that points at a commit). To make sure that `$VAR`
90names an existing object of any type, `git rev-parse "$VAR^{object}"`
91can be used.
Junio C Hamano5077fa92005-09-07 14:08:38 -070092
Stephan Beyer32402402008-06-08 03:36:09 +020093-q::
94--quiet::
Christian Couderb1b35962008-04-26 13:57:23 +020095 Only meaningful in `--verify` mode. Do not output an error
96 message if the first argument is not a valid object name;
97 instead exit with non-zero status silently.
98
Junio C Hamano5077fa92005-09-07 14:08:38 -070099--sq::
100 Usually the output is made one line per flag and
101 parameter. This option makes output a single line,
102 properly quoted for consumption by shell. Useful when
103 you expect your parameter to contain whitespaces and
104 newlines (e.g. when using pickaxe `-S` with
Jonathan Nieder4cacbf62010-08-20 05:35:03 -0500105 'git diff-{asterisk}'). In contrast to the `--sq-quote` option,
Christian Couder50325372009-04-25 06:55:26 +0200106 the command input is still interpreted as usual.
Junio C Hamano5077fa92005-09-07 14:08:38 -0700107
108--not::
Jonas Fonsecababfaba2005-10-05 16:56:31 -0700109 When showing object names, prefix them with '{caret}' and
110 strip '{caret}' prefix from the object names that already have
Junio C Hamano5077fa92005-09-07 14:08:38 -0700111 one.
112
113--symbolic::
Thomas Ackermannd5fa1f12013-04-15 19:49:04 +0200114 Usually the object names are output in SHA-1 form (with
Jonas Fonsecababfaba2005-10-05 16:56:31 -0700115 possible '{caret}' prefix); this option makes them output in a
Junio C Hamano5077fa92005-09-07 14:08:38 -0700116 form as close to the original input as possible.
117
Junio C Hamanoa6d97d42008-01-05 12:09:55 -0800118--symbolic-full-name::
119 This is similar to \--symbolic, but it omits input that
120 are not refs (i.e. branch or tag names; or more
121 explicitly disambiguating "heads/master" form, when you
122 want to name the "master" branch when there is an
123 unfortunately named tag "master"), and show them as full
124 refnames (e.g. "refs/heads/master").
Junio C Hamano5077fa92005-09-07 14:08:38 -0700125
Štěpán Němec0adda932010-10-08 19:31:17 +0200126--abbrev-ref[=(strict|loose)]::
Bert Wesarga45d3462009-04-13 13:20:26 +0200127 A non-ambiguous short name of the objects name.
128 The option core.warnAmbiguousRefs is used to select the strict
129 abbreviation mode.
130
Junio C Hamano957d7402012-07-03 14:21:59 -0700131--disambiguate=<prefix>::
132 Show every object whose name begins with the given prefix.
133 The <prefix> must be at least 4 hexadecimal digits long to
134 avoid listing each and every object in the repository by
135 mistake.
136
Junio C Hamano5077fa92005-09-07 14:08:38 -0700137--all::
Jeff Kingcc1b8d82010-02-17 20:16:20 -0500138 Show all refs found in `refs/`.
Junio C Hamano5077fa92005-09-07 14:08:38 -0700139
Ilari Liusvaarab09fe972010-01-20 11:48:26 +0200140--branches[=pattern]::
Ilari Liusvaarab09fe972010-01-20 11:48:26 +0200141--tags[=pattern]::
Ilari Liusvaarab09fe972010-01-20 11:48:26 +0200142--remotes[=pattern]::
Thomas Raste2b53e52010-01-22 01:21:38 +0100143 Show all branches, tags, or remote-tracking branches,
Jeff Kingcc1b8d82010-02-17 20:16:20 -0500144 respectively (i.e., refs found in `refs/heads`,
145 `refs/tags`, or `refs/remotes`, respectively).
Thomas Raste2b53e52010-01-22 01:21:38 +0100146+
147If a `pattern` is given, only refs matching the given shell glob are
148shown. If the pattern does not contain a globbing character (`?`,
Jeff King6cf378f2012-04-26 04:51:57 -0400149`*`, or `[`), it is turned into a prefix match by appending `/*`.
Seana62be772006-05-13 21:43:00 -0400150
Thomas Raste2b53e52010-01-22 01:21:38 +0100151--glob=pattern::
152 Show all refs matching the shell glob pattern `pattern`. If
153 the pattern does not start with `refs/`, this is automatically
154 prepended. If the pattern does not contain a globbing
Jeff King6cf378f2012-04-26 04:51:57 -0400155 character (`?`, `*`, or `[`), it is turned into a prefix
156 match by appending `/*`.
Seana62be772006-05-13 21:43:00 -0400157
Steven Drake7cceca52010-01-12 11:33:48 +1300158--show-toplevel::
159 Show the absolute path of the top-level directory.
160
Junio C Hamano5077fa92005-09-07 14:08:38 -0700161--show-prefix::
Junio C Hamano5f94c732005-12-22 22:35:38 -0800162 When the command is invoked from a subdirectory, show the
Junio C Hamano5077fa92005-09-07 14:08:38 -0700163 path of the current directory relative to the top-level
164 directory.
Junio C Hamano7fc9d692005-08-23 01:49:47 -0700165
Junio C Hamano5f94c732005-12-22 22:35:38 -0800166--show-cdup::
167 When the command is invoked from a subdirectory, show the
168 path of the top-level directory relative to the current
169 directory (typically a sequence of "../", or an empty string).
170
Jonas Fonseca735d80b2006-02-18 02:11:36 +0100171--git-dir::
Jonathan Nieder80d868b2010-11-26 22:32:31 +0700172 Show `$GIT_DIR` if defined. Otherwise show the path to
Jon Seymourd0740ce2012-05-18 19:23:24 +1000173 the .git directory. The path shown, when relative, is
174 relative to the current working directory.
Jonathan Nieder80d868b2010-11-26 22:32:31 +0700175+
176If `$GIT_DIR` is not defined and the current directory
Thomas Ackermann2de9b712013-01-21 20:17:53 +0100177is not detected to lie in a Git repository or work tree
Jonathan Nieder80d868b2010-11-26 22:32:31 +0700178print a message to stderr and exit with nonzero status.
Jonas Fonseca735d80b2006-02-18 02:11:36 +0100179
Jakub Narebskic9bf7be2007-06-16 21:03:44 +0200180--is-inside-git-dir::
Matthias Lederhofer4faac242007-06-03 16:46:04 +0200181 When the current working directory is below the repository
182 directory print "true", otherwise "false".
183
Matthias Lederhofer892c41b2007-06-06 09:10:42 +0200184--is-inside-work-tree::
185 When the current working directory is inside the work tree of the
186 repository print "true", otherwise "false".
187
Matthias Lederhofer493c7742007-06-03 16:46:36 +0200188--is-bare-repository::
189 When the repository is bare print "true", otherwise "false".
Jakub Narebskic9bf7be2007-06-16 21:03:44 +0200190
Giuseppe Bilotta94c8cca2010-02-25 00:34:15 +0100191--local-env-vars::
192 List the GIT_* environment variables that are local to the
193 repository (e.g. GIT_DIR or GIT_WORK_TREE, but not GIT_EDITOR).
194 Only the names of the variables are listed, not their value,
195 even if they are set.
196
Stephan Beyer32402402008-06-08 03:36:09 +0200197--short::
198--short=number::
Thomas Ackermannd5fa1f12013-04-15 19:49:04 +0200199 Instead of outputting the full SHA-1 values of object names try to
Horst H. von Brandabda1ef2006-06-03 16:27:26 -0400200 abbreviate them to a shorter unique name. When no length is specified
Jonas Fonseca735d80b2006-02-18 02:11:36 +0100201 7 is used. The minimum length is 4.
202
Stephan Beyer32402402008-06-08 03:36:09 +0200203--since=datestring::
204--after=datestring::
Jonathan Nieder483bc4f2008-06-30 13:56:34 -0500205 Parse the date string, and output the corresponding
Thomas Rast0b444cd2010-01-10 00:33:00 +0100206 --max-age= parameter for 'git rev-list'.
Junio C Hamanoa3114b32005-11-02 23:41:25 -0800207
Stephan Beyer32402402008-06-08 03:36:09 +0200208--until=datestring::
209--before=datestring::
Jonathan Nieder483bc4f2008-06-30 13:56:34 -0500210 Parse the date string, and output the corresponding
Thomas Rast0b444cd2010-01-10 00:33:00 +0100211 --min-age= parameter for 'git rev-list'.
Junio C Hamanoa3114b32005-11-02 23:41:25 -0800212
Junio C Hamano7fc9d692005-08-23 01:49:47 -0700213<args>...::
Junio C Hamano5077fa92005-09-07 14:08:38 -0700214 Flags and parameters to be parsed.
Junio C Hamano7fc9d692005-08-23 01:49:47 -0700215
Fredrik Gustafssonabc06822011-08-15 23:17:46 +0200216--resolve-git-dir <path>::
Thomas Ackermann0859c962013-02-01 19:07:56 +0100217 Check if <path> is a valid repository or a gitfile that
218 points at a valid repository, and print the location of the
219 repository. If <path> is a gitfile then the resolved path
220 to the real repository is printed.
221
Junio C Hamano7fc9d692005-08-23 01:49:47 -0700222
Michael J Gruber5a8f3112010-07-05 18:11:39 +0200223include::revisions.txt[]
Junio C Hamanobe4c7012006-07-06 22:37:51 -0700224
Pierre Habouzit21d47832007-11-04 11:30:53 +0100225PARSEOPT
226--------
227
Thomas Rast0b444cd2010-01-10 00:33:00 +0100228In `--parseopt` mode, 'git rev-parse' helps massaging options to bring to shell
Pierre Habouzit21d47832007-11-04 11:30:53 +0100229scripts the same facilities C builtins have. It works as an option normalizer
230(e.g. splits single switches aggregate values), a bit like `getopt(1)` does.
231
232It takes on the standard input the specification of the options to parse and
Thomas Rastac2e1e62010-07-30 17:01:50 +0200233understand, and echoes on the standard output a string suitable for `sh(1)` `eval`
Pierre Habouzit21d47832007-11-04 11:30:53 +0100234to replace the arguments with normalized ones. In case of error, it outputs
235usage on the standard error stream, and exits with code 129.
236
Thomas Rastac2e1e62010-07-30 17:01:50 +0200237Note: Make sure you quote the result when passing it to `eval`. See
238below for an example.
239
Pierre Habouzit21d47832007-11-04 11:30:53 +0100240Input Format
241~~~~~~~~~~~~
242
Thomas Rast0b444cd2010-01-10 00:33:00 +0100243'git rev-parse --parseopt' input format is fully text based. It has two parts,
Pierre Habouzit21d47832007-11-04 11:30:53 +0100244separated by a line that contains only `--`. The lines before the separator
245(should be more than one) are used for the usage.
246The lines after the separator describe the options.
247
248Each line of options has this format:
249
250------------
Pierre Habouzitff962a32008-03-02 09:21:38 +0100251<opt_spec><flags>* SP+ help LF
Pierre Habouzit21d47832007-11-04 11:30:53 +0100252------------
253
254`<opt_spec>`::
255 its format is the short option character, then the long option name
256 separated by a comma. Both parts are not required, though at least one
257 is necessary. `h,help`, `dry-run` and `f` are all three correct
258 `<opt_spec>`.
259
Pierre Habouzitff962a32008-03-02 09:21:38 +0100260`<flags>`::
261 `<flags>` are of `*`, `=`, `?` or `!`.
262 * Use `=` if the option takes an argument.
263
264 * Use `?` to mean that the option is optional (though its use is discouraged).
265
266 * Use `*` to mean that this option should not be listed in the usage
267 generated for the `-h` argument. It's shown for `--help-all` as
Christian Coudera5af0e22008-05-02 05:30:47 +0200268 documented in linkgit:gitcli[7].
Pierre Habouzitff962a32008-03-02 09:21:38 +0100269
270 * Use `!` to not make the corresponding negated long option available.
Pierre Habouzit21d47832007-11-04 11:30:53 +0100271
272The remainder of the line, after stripping the spaces, is used
273as the help associated to the option.
274
275Blank lines are ignored, and lines that don't match this specification are used
276as option group headers (start the line with a space to create such
277lines on purpose).
278
279Example
280~~~~~~~
281
282------------
283OPTS_SPEC="\
284some-command [options] <args>...
285
286some-command does foo and bar!
287--
288h,help show the help
289
290foo some nifty option --foo
291bar= some cool option --bar with an argument
292
293 An option group Header
294C? option C with an optional argument"
295
Thomas Rastac2e1e62010-07-30 17:01:50 +0200296eval "$(echo "$OPTS_SPEC" | git rev-parse --parseopt -- "$@" || echo exit $?)"
Pierre Habouzit21d47832007-11-04 11:30:53 +0100297------------
298
Christian Couder50325372009-04-25 06:55:26 +0200299SQ-QUOTE
300--------
301
Thomas Rast0b444cd2010-01-10 00:33:00 +0100302In `--sq-quote` mode, 'git rev-parse' echoes on the standard output a
Christian Couder50325372009-04-25 06:55:26 +0200303single line suitable for `sh(1)` `eval`. This line is made by
304normalizing the arguments following `--sq-quote`. Nothing other than
305quoting the arguments is done.
306
307If you want command input to still be interpreted as usual by
Thomas Rast0b444cd2010-01-10 00:33:00 +0100308'git rev-parse' before the output is shell quoted, see the `--sq`
Christian Couder50325372009-04-25 06:55:26 +0200309option.
310
311Example
312~~~~~~~
313
314------------
315$ cat >your-git-script.sh <<\EOF
316#!/bin/sh
317args=$(git rev-parse --sq-quote "$@") # quote user-supplied arguments
318command="git frotz -n24 $args" # and use it inside a handcrafted
319 # command line
320eval "$command"
321EOF
322
323$ sh your-git-script.sh "a b'c"
324------------
325
Christian Couder824b5dc2008-05-13 06:51:41 +0200326EXAMPLES
327--------
328
329* Print the object name of the current commit:
330+
331------------
332$ git rev-parse --verify HEAD
333------------
334
335* Print the commit object name from the revision in the $REV shell variable:
336+
337------------
Michael Haggerty2db60672013-03-30 07:44:25 +0100338$ git rev-parse --verify $REV^{commit}
Christian Couder824b5dc2008-05-13 06:51:41 +0200339------------
340+
341This will error out if $REV is empty or not a valid revision.
342
Michael Haggerty2db60672013-03-30 07:44:25 +0100343* Similar to above:
Christian Couder824b5dc2008-05-13 06:51:41 +0200344+
345------------
346$ git rev-parse --default master --verify $REV
347------------
348+
349but if $REV is empty, the commit object name from master will be printed.
350
Junio C Hamano7fc9d692005-08-23 01:49:47 -0700351GIT
352---
Christian Couder9e1f0a82008-06-06 09:07:32 +0200353Part of the linkgit:git[1] suite