]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-rev-parse.txt
Start the 2.46 cycle
[thirdparty/git.git] / Documentation / git-rev-parse.txt
CommitLineData
7fc9d69f
JH
1git-rev-parse(1)
2================
3
4NAME
5----
7bd7f280 6git-rev-parse - Pick out and massage parameters
7fc9d69f
JH
7
8
9SYNOPSIS
10--------
7791a1d9 11[verse]
de2852ab 12'git rev-parse' [<options>] <arg>...
7fc9d69f
JH
13
14DESCRIPTION
15-----------
5077fa9c 16
0a4f051f 17Many Git porcelainish commands take a mixture of flags
5077fa9c 18(i.e. parameters that begin with a dash '-') and parameters
0b444cdb 19meant for the underlying 'git rev-list' command they use internally
483bc4f0 20and flags and parameters for the other commands they use
0b444cdb 21downstream of 'git rev-list'. This command is used to
5077fa9c 22distinguish between them.
7fc9d69f
JH
23
24
25OPTIONS
26-------
49c63913
JK
27
28Operation Modes
29~~~~~~~~~~~~~~~
30
31Each of these options must appear first on the command line.
32
21d47835 33--parseopt::
0b444cdb 34 Use 'git rev-parse' in option parsing mode (see PARSEOPT section below).
21d47835 35
49c63913
JK
36--sq-quote::
37 Use 'git rev-parse' in shell quoting mode (see SQ-QUOTE
38 section below). In contrast to the `--sq` option below, this
cf6cac20 39 mode only does quoting. Nothing else is done to command input.
49c63913
JK
40
41Options for --parseopt
42~~~~~~~~~~~~~~~~~~~~~~
43
2163e3f7 44--keep-dashdash::
21d47835
PH
45 Only meaningful in `--parseopt` mode. Tells the option parser to echo
46 out the first `--` met instead of skipping it.
47
6e0800ef
UKK
48--stop-at-non-option::
49 Only meaningful in `--parseopt` mode. Lets the option parser stop at
50 the first non-option argument. This can be used to parse sub-commands
6a5d0b0a 51 that take options themselves.
6e0800ef 52
f8c87212
NV
53--stuck-long::
54 Only meaningful in `--parseopt` mode. Output the options in their
55 long form if available, and with their arguments stuck.
56
49c63913
JK
57Options for Filtering
58~~~~~~~~~~~~~~~~~~~~~
50325377 59
5077fa9c
JH
60--revs-only::
61 Do not output flags and parameters not meant for
0b444cdb 62 'git rev-list' command.
5077fa9c
JH
63
64--no-revs::
65 Do not output flags and parameters meant for
0b444cdb 66 'git rev-list' command.
5077fa9c
JH
67
68--flags::
69 Do not output non-flag parameters.
70
71--no-flags::
72 Do not output flag parameters.
73
49c63913
JK
74Options for Output
75~~~~~~~~~~~~~~~~~~
76
5077fa9c
JH
77--default <arg>::
78 If there is no parameter given by the user, use `<arg>`
79 instead.
80
12b9d327
JK
81--prefix <arg>::
82 Behave as if 'git rev-parse' was invoked from the `<arg>`
83 subdirectory of the working tree. Any relative filenames are
84 resolved as if they are prefixed by `<arg>` and will be printed
85 in that form.
86+
87This can be used to convert arguments to a command run in a subdirectory
88so that they can still be used after moving to the top-level of the
89repository. For example:
90+
91----
92prefix=$(git rev-parse --show-prefix)
93cd "$(git rev-parse --show-toplevel)"
11873b43
RH
94# rev-parse provides the -- needed for 'set'
95eval "set $(git rev-parse --sq --prefix "$prefix" -- "$@")"
12b9d327
JK
96----
97
5077fa9c 98--verify::
2db60670
MH
99 Verify that exactly one parameter is provided, and that it
100 can be turned into a raw 20-byte SHA-1 that can be used to
101 access the object database. If so, emit it to the standard
102 output; otherwise, error out.
103+
104If you want to make sure that the output actually names an object in
105your object database and/or can be used as a specific type of object
b50bfb8f 106you require, you can add the `^{type}` peeling operator to the parameter.
2db60670
MH
107For example, `git rev-parse "$VAR^{commit}"` will make sure `$VAR`
108names an existing object that is a commit-ish (i.e. a commit, or an
109annotated tag that points at a commit). To make sure that `$VAR`
110names an existing object of any type, `git rev-parse "$VAR^{object}"`
111can be used.
3a1f91cf
JK
112+
113Note that if you are verifying a name from an untrusted source, it is
114wise to use `--end-of-options` so that the name argument is not mistaken
115for another option.
5077fa9c 116
3240240f
SB
117-q::
118--quiet::
b1b35969
CC
119 Only meaningful in `--verify` mode. Do not output an error
120 message if the first argument is not a valid object name;
121 instead exit with non-zero status silently.
56625df7 122 SHA-1s for valid object names are printed to stdout on success.
b1b35969 123
5077fa9c
JH
124--sq::
125 Usually the output is made one line per flag and
126 parameter. This option makes output a single line,
127 properly quoted for consumption by shell. Useful when
128 you expect your parameter to contain whitespaces and
129 newlines (e.g. when using pickaxe `-S` with
4cacbf67 130 'git diff-{asterisk}'). In contrast to the `--sq-quote` option,
50325377 131 the command input is still interpreted as usual.
5077fa9c 132
de2852ab 133--short[=<length>]::
fb87327a
AH
134 Same as `--verify` but shortens the object name to a unique
135 prefix with at least `length` characters. The minimum length
136 is 4, the default is the effective value of the `core.abbrev`
137 configuration variable (see linkgit:git-config[1]).
138
5077fa9c 139--not::
babfaba2
JF
140 When showing object names, prefix them with '{caret}' and
141 strip '{caret}' prefix from the object names that already have
5077fa9c
JH
142 one.
143
49c63913
JK
144--abbrev-ref[=(strict|loose)]::
145 A non-ambiguous short name of the objects name.
146 The option core.warnAmbiguousRefs is used to select the strict
147 abbreviation mode.
148
5077fa9c 149--symbolic::
d5fa1f1a 150 Usually the object names are output in SHA-1 form (with
babfaba2 151 possible '{caret}' prefix); this option makes them output in a
5077fa9c
JH
152 form as close to the original input as possible.
153
a6d97d49 154--symbolic-full-name::
1c262bb7 155 This is similar to --symbolic, but it omits input that
a6d97d49
JH
156 are not refs (i.e. branch or tag names; or more
157 explicitly disambiguating "heads/master" form, when you
158 want to name the "master" branch when there is an
7f7e6bbe 159 unfortunately named tag "master"), and shows them as full
a6d97d49 160 refnames (e.g. "refs/heads/master").
5077fa9c 161
d7446c89
EB
162--output-object-format=(sha1|sha256|storage)::
163
164 Allow oids to be input from any object format that the current
165 repository supports.
166
167 Specifying "sha1" translates if necessary and returns a sha1 oid.
168
169 Specifying "sha256" translates if necessary and returns a sha256 oid.
170
171 Specifying "storage" translates if necessary and returns an oid in
172 encoded in the storage hash algorithm.
173
49c63913
JK
174Options for Objects
175~~~~~~~~~~~~~~~~~~~
957d7406 176
5077fa9c 177--all::
cc1b8d8b 178 Show all refs found in `refs/`.
5077fa9c 179
de2852ab
JNA
180--branches[=<pattern>]::
181--tags[=<pattern>]::
182--remotes[=<pattern>]::
e2b53e58 183 Show all branches, tags, or remote-tracking branches,
cc1b8d8b
JK
184 respectively (i.e., refs found in `refs/heads`,
185 `refs/tags`, or `refs/remotes`, respectively).
e2b53e58
TR
186+
187If a `pattern` is given, only refs matching the given shell glob are
188shown. If the pattern does not contain a globbing character (`?`,
6cf378f0 189`*`, or `[`), it is turned into a prefix match by appending `/*`.
e2b53e58 190
de2852ab 191--glob=<pattern>::
e2b53e58
TR
192 Show all refs matching the shell glob pattern `pattern`. If
193 the pattern does not start with `refs/`, this is automatically
194 prepended. If the pattern does not contain a globbing
6cf378f0
JK
195 character (`?`, `*`, or `[`), it is turned into a prefix
196 match by appending `/*`.
a62be77f 197
9dc01bf0
JH
198--exclude=<glob-pattern>::
199 Do not include refs matching '<glob-pattern>' that the next `--all`,
200 `--branches`, `--tags`, `--remotes`, or `--glob` would otherwise
201 consider. Repetitions of this option accumulate exclusion patterns
202 up to the next `--all`, `--branches`, `--tags`, `--remotes`, or
203 `--glob` option (other options or arguments do not clear
f745acb0 204 accumulated patterns).
9dc01bf0
JH
205+
206The patterns given should not begin with `refs/heads`, `refs/tags`, or
207`refs/remotes` when applied to `--branches`, `--tags`, or `--remotes`,
208respectively, and they must begin with `refs/` when applied to `--glob`
209or `--all`. If a trailing '/{asterisk}' is intended, it must be given
210explicitly.
211
de2852ab 212--exclude-hidden=(fetch|receive|uploadpack)::
c6ce27ab
EW
213 Do not include refs that would be hidden by `git-fetch`,
214 `git-receive-pack` or `git-upload-pack` by consulting the appropriate
215 `fetch.hideRefs`, `receive.hideRefs` or `uploadpack.hideRefs`
216 configuration along with `transfer.hideRefs` (see
5ff36c9b
PS
217 linkgit:git-config[1]). This option affects the next pseudo-ref option
218 `--all` or `--glob` and is cleared after processing them.
219
49c63913
JK
220--disambiguate=<prefix>::
221 Show every object whose name begins with the given prefix.
222 The <prefix> must be at least 4 hexadecimal digits long to
223 avoid listing each and every object in the repository by
224 mistake.
7cceca5c 225
49c63913
JK
226Options for Files
227~~~~~~~~~~~~~~~~~
7fc9d69f 228
49c63913
JK
229--local-env-vars::
230 List the GIT_* environment variables that are local to the
231 repository (e.g. GIT_DIR or GIT_WORK_TREE, but not GIT_EDITOR).
232 Only the names of the variables are listed, not their value,
233 even if they are set.
5f94c730 234
fac60b89 235--path-format=(absolute|relative)::
236 Controls the behavior of certain other options. If specified as absolute, the
237 paths printed by those options will be absolute and canonical. If specified as
238 relative, the paths will be relative to the current working directory if that
239 is possible. The default is option specific.
240+
241This option may be specified multiple times and affects only the arguments that
242follow it on the command line, either to the end of the command line or the next
243instance of this option.
244
245The following options are modified by `--path-format`:
246
735d80b3 247--git-dir::
80d868b0 248 Show `$GIT_DIR` if defined. Otherwise show the path to
d0740ce0
JS
249 the .git directory. The path shown, when relative, is
250 relative to the current working directory.
80d868b0
JN
251+
252If `$GIT_DIR` is not defined and the current directory
2de9b711 253is not detected to lie in a Git repository or work tree
80d868b0 254print a message to stderr and exit with nonzero status.
735d80b3 255
31e26ebc
NTND
256--git-common-dir::
257 Show `$GIT_COMMON_DIR` if defined, else `$GIT_DIR`.
258
49c63913
JK
259--resolve-git-dir <path>::
260 Check if <path> is a valid repository or a gitfile that
261 points at a valid repository, and print the location of the
262 repository. If <path> is a gitfile then the resolved path
263 to the real repository is printed.
94c8ccaa 264
557bd833
NTND
265--git-path <path>::
266 Resolve "$GIT_DIR/<path>" and takes other path relocation
267 variables such as $GIT_OBJECT_DIRECTORY,
268 $GIT_INDEX_FILE... into account. For example, if
269 $GIT_OBJECT_DIRECTORY is set to /foo/bar then "git rev-parse
270 --git-path objects/abc" returns /foo/bar/abc.
271
49c63913 272--show-toplevel::
fac60b89 273 Show the (by default, absolute) path of the top-level directory
274 of the working tree. If there is no working tree, report an error.
49c63913 275
e38c681f 276--show-superproject-working-tree::
bf0231c6
SB
277 Show the absolute path of the root of the superproject's
278 working tree (if exists) that uses the current repository as
279 its submodule. Outputs nothing if the current repository is
280 not used as a submodule by any project.
281
a76295da
NTND
282--shared-index-path::
283 Show the path to the shared index file in split index mode, or
284 empty if not in split-index mode.
285
fac60b89 286The following options are unaffected by `--path-format`:
287
288--absolute-git-dir::
289 Like `--git-dir`, but its output is always the canonicalized
290 absolute path.
291
292--is-inside-git-dir::
293 When the current working directory is below the repository
294 directory print "true", otherwise "false".
295
296--is-inside-work-tree::
297 When the current working directory is inside the work tree of the
298 repository print "true", otherwise "false".
299
300--is-bare-repository::
301 When the repository is bare print "true", otherwise "false".
302
303--is-shallow-repository::
304 When the repository is shallow print "true", otherwise "false".
305
306--show-cdup::
307 When the command is invoked from a subdirectory, show the
308 path of the top-level directory relative to the current
309 directory (typically a sequence of "../", or an empty string).
310
311--show-prefix::
312 When the command is invoked from a subdirectory, show the
313 path of the current directory relative to the top-level
314 directory.
315
2eabd383 316--show-object-format[=(storage|input|output)]::
317 Show the object format (hash algorithm) used for the repository
318 for storage inside the `.git` directory, input, or output. For
319 input, multiple algorithms may be printed, space-separated.
320 If not specified, the default is "storage".
321
3c4a5318
PS
322--show-ref-format::
323 Show the reference storage format used for the repository.
324
2eabd383 325
49c63913
JK
326Other Options
327~~~~~~~~~~~~~
735d80b3 328
de2852ab
JNA
329--since=<datestring>::
330--after=<datestring>::
483bc4f0 331 Parse the date string, and output the corresponding
0b444cdb 332 --max-age= parameter for 'git rev-list'.
a3114b34 333
de2852ab
JNA
334--until=<datestring>::
335--before=<datestring>::
483bc4f0 336 Parse the date string, and output the corresponding
0b444cdb 337 --min-age= parameter for 'git rev-list'.
a3114b34 338
de2852ab 339<arg>...::
5077fa9c 340 Flags and parameters to be parsed.
7fc9d69f
JH
341
342
5a8f3117 343include::revisions.txt[]
be4c7014 344
21d47835
PH
345PARSEOPT
346--------
347
0b444cdb 348In `--parseopt` mode, 'git rev-parse' helps massaging options to bring to shell
21d47835
PH
349scripts the same facilities C builtins have. It works as an option normalizer
350(e.g. splits single switches aggregate values), a bit like `getopt(1)` does.
351
352It takes on the standard input the specification of the options to parse and
ac2e1e63 353understand, and echoes on the standard output a string suitable for `sh(1)` `eval`
21d47835
PH
354to replace the arguments with normalized ones. In case of error, it outputs
355usage on the standard error stream, and exits with code 129.
356
ac2e1e63
TR
357Note: Make sure you quote the result when passing it to `eval`. See
358below for an example.
359
21d47835
PH
360Input Format
361~~~~~~~~~~~~
362
0b444cdb 363'git rev-parse --parseopt' input format is fully text based. It has two parts,
21d47835 364separated by a line that contains only `--`. The lines before the separator
9bab5b60 365(should be one or more) are used for the usage.
21d47835
PH
366The lines after the separator describe the options.
367
368Each line of options has this format:
369
370------------
e703d711 371<opt-spec><flags>*<arg-hint>? SP+ help LF
21d47835
PH
372------------
373
e703d711 374`<opt-spec>`::
21d47835
PH
375 its format is the short option character, then the long option name
376 separated by a comma. Both parts are not required, though at least one
2d893dff
IB
377 is necessary. May not contain any of the `<flags>` characters.
378 `h,help`, `dry-run` and `f` are examples of correct `<opt-spec>`.
21d47835 379
ff962a3f
PH
380`<flags>`::
381 `<flags>` are of `*`, `=`, `?` or `!`.
382 * Use `=` if the option takes an argument.
383
f8c87212
NV
384 * Use `?` to mean that the option takes an optional argument. You
385 probably want to use the `--stuck-long` mode to be able to
386 unambiguously parse the optional argument.
ff962a3f
PH
387
388 * Use `*` to mean that this option should not be listed in the usage
389 generated for the `-h` argument. It's shown for `--help-all` as
a5af0e2c 390 documented in linkgit:gitcli[7].
ff962a3f
PH
391
392 * Use `!` to not make the corresponding negated long option available.
21d47835 393
e703d711
JH
394`<arg-hint>`::
395 `<arg-hint>`, if specified, is used as a name of the argument in the
396 help output, for options that take arguments. `<arg-hint>` is
397 terminated by the first whitespace. It is customary to use a
398 dash to separate words in a multi-word argument hint.
9bab5b60 399
21d47835 400The remainder of the line, after stripping the spaces, is used
9a9fd289 401as the help associated with the option.
21d47835
PH
402
403Blank lines are ignored, and lines that don't match this specification are used
404as option group headers (start the line with a space to create such
405lines on purpose).
406
407Example
408~~~~~~~
409
410------------
411OPTS_SPEC="\
de613050 412some-command [<options>] <args>...
21d47835
PH
413
414some-command does foo and bar!
415--
aa43619b 416h,help! show the help
21d47835
PH
417
418foo some nifty option --foo
419bar= some cool option --bar with an argument
9bab5b60
IB
420baz=arg another cool option --baz with a named argument
421qux?path qux may take a path argument but has meaning by itself
21d47835
PH
422
423 An option group Header
424C? option C with an optional argument"
425
ac2e1e63 426eval "$(echo "$OPTS_SPEC" | git rev-parse --parseopt -- "$@" || echo exit $?)"
21d47835
PH
427------------
428
9bab5b60
IB
429
430Usage text
431~~~~~~~~~~
432
433When `"$@"` is `-h` or `--help` in the above example, the following
434usage text would be shown:
435
436------------
de613050 437usage: some-command [<options>] <args>...
9bab5b60
IB
438
439 some-command does foo and bar!
440
441 -h, --help show the help
e8e5d294
RS
442 --[no-]foo some nifty option --foo
443 --[no-]bar ... some cool option --bar with an argument
444 --[no-]baz <arg> another cool option --baz with a named argument
445 --[no-]qux[=<path>] qux may take a path argument but has meaning by itself
9bab5b60
IB
446
447An option group Header
448 -C[...] option C with an optional argument
449------------
450
50325377
CC
451SQ-QUOTE
452--------
453
0b444cdb 454In `--sq-quote` mode, 'git rev-parse' echoes on the standard output a
50325377
CC
455single line suitable for `sh(1)` `eval`. This line is made by
456normalizing the arguments following `--sq-quote`. Nothing other than
457quoting the arguments is done.
458
459If you want command input to still be interpreted as usual by
0b444cdb 460'git rev-parse' before the output is shell quoted, see the `--sq`
50325377
CC
461option.
462
463Example
464~~~~~~~
465
466------------
467$ cat >your-git-script.sh <<\EOF
468#!/bin/sh
469args=$(git rev-parse --sq-quote "$@") # quote user-supplied arguments
470command="git frotz -n24 $args" # and use it inside a handcrafted
471 # command line
472eval "$command"
473EOF
474
475$ sh your-git-script.sh "a b'c"
476------------
477
824b5dc2
CC
478EXAMPLES
479--------
480
481* Print the object name of the current commit:
482+
483------------
484$ git rev-parse --verify HEAD
485------------
486
487* Print the commit object name from the revision in the $REV shell variable:
488+
489------------
3a1f91cf 490$ git rev-parse --verify --end-of-options $REV^{commit}
824b5dc2
CC
491------------
492+
493This will error out if $REV is empty or not a valid revision.
494
2db60670 495* Similar to above:
824b5dc2
CC
496+
497------------
3a1f91cf 498$ git rev-parse --default master --verify --end-of-options $REV
824b5dc2
CC
499------------
500+
501but if $REV is empty, the commit object name from master will be printed.
502
7fc9d69f
JH
503GIT
504---
9e1f0a85 505Part of the linkgit:git[1] suite