]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-rev-parse.txt
i18n: avoid parenthesized string as array initializer
[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--------
b1889c36 11'git rev-parse' [ --option ] <args>...
7fc9d69f
JH
12
13DESCRIPTION
14-----------
5077fa9c 15
abda1ef5 16Many git porcelainish commands take mixture of flags
5077fa9c 17(i.e. parameters that begin with a dash '-') and parameters
0b444cdb 18meant for the underlying 'git rev-list' command they use internally
483bc4f0 19and flags and parameters for the other commands they use
0b444cdb 20downstream of 'git rev-list'. This command is used to
5077fa9c 21distinguish between them.
7fc9d69f
JH
22
23
24OPTIONS
25-------
21d47835 26--parseopt::
0b444cdb 27 Use 'git rev-parse' in option parsing mode (see PARSEOPT section below).
21d47835 28
2163e3f7 29--keep-dashdash::
21d47835
PH
30 Only meaningful in `--parseopt` mode. Tells the option parser to echo
31 out the first `--` met instead of skipping it.
32
6e0800ef
UKK
33--stop-at-non-option::
34 Only meaningful in `--parseopt` mode. Lets the option parser stop at
35 the first non-option argument. This can be used to parse sub-commands
6a5d0b0a 36 that take options themselves.
6e0800ef 37
50325377 38--sq-quote::
0b444cdb 39 Use 'git rev-parse' in shell quoting mode (see SQ-QUOTE
50325377
CC
40 section below). In contrast to the `--sq` option below, this
41 mode does only quoting. Nothing else is done to command input.
42
5077fa9c
JH
43--revs-only::
44 Do not output flags and parameters not meant for
0b444cdb 45 'git rev-list' command.
5077fa9c
JH
46
47--no-revs::
48 Do not output flags and parameters meant for
0b444cdb 49 'git rev-list' command.
5077fa9c
JH
50
51--flags::
52 Do not output non-flag parameters.
53
54--no-flags::
55 Do not output flag parameters.
56
57--default <arg>::
58 If there is no parameter given by the user, use `<arg>`
59 instead.
60
61--verify::
62 The parameter given must be usable as a single, valid
63 object name. Otherwise barf and abort.
64
3240240f
SB
65-q::
66--quiet::
b1b35969
CC
67 Only meaningful in `--verify` mode. Do not output an error
68 message if the first argument is not a valid object name;
69 instead exit with non-zero status silently.
70
5077fa9c
JH
71--sq::
72 Usually the output is made one line per flag and
73 parameter. This option makes output a single line,
74 properly quoted for consumption by shell. Useful when
75 you expect your parameter to contain whitespaces and
76 newlines (e.g. when using pickaxe `-S` with
4cacbf67 77 'git diff-{asterisk}'). In contrast to the `--sq-quote` option,
50325377 78 the command input is still interpreted as usual.
5077fa9c
JH
79
80--not::
babfaba2
JF
81 When showing object names, prefix them with '{caret}' and
82 strip '{caret}' prefix from the object names that already have
5077fa9c
JH
83 one.
84
85--symbolic::
86 Usually the object names are output in SHA1 form (with
babfaba2 87 possible '{caret}' prefix); this option makes them output in a
5077fa9c
JH
88 form as close to the original input as possible.
89
a6d97d49
JH
90--symbolic-full-name::
91 This is similar to \--symbolic, but it omits input that
92 are not refs (i.e. branch or tag names; or more
93 explicitly disambiguating "heads/master" form, when you
94 want to name the "master" branch when there is an
95 unfortunately named tag "master"), and show them as full
96 refnames (e.g. "refs/heads/master").
5077fa9c 97
0adda936 98--abbrev-ref[=(strict|loose)]::
a45d3469
BW
99 A non-ambiguous short name of the objects name.
100 The option core.warnAmbiguousRefs is used to select the strict
101 abbreviation mode.
102
5077fa9c 103--all::
cc1b8d8b 104 Show all refs found in `refs/`.
5077fa9c 105
b09fe971 106--branches[=pattern]::
b09fe971 107--tags[=pattern]::
b09fe971 108--remotes[=pattern]::
e2b53e58 109 Show all branches, tags, or remote-tracking branches,
cc1b8d8b
JK
110 respectively (i.e., refs found in `refs/heads`,
111 `refs/tags`, or `refs/remotes`, respectively).
e2b53e58
TR
112+
113If a `pattern` is given, only refs matching the given shell glob are
114shown. If the pattern does not contain a globbing character (`?`,
4cacbf67
JN
115`{asterisk}`, or `[`), it is turned into a prefix match by
116appending `/{asterisk}`.
e2b53e58
TR
117
118--glob=pattern::
119 Show all refs matching the shell glob pattern `pattern`. If
120 the pattern does not start with `refs/`, this is automatically
121 prepended. If the pattern does not contain a globbing
4cacbf67
JN
122 character (`?`, `{asterisk}`, or `[`), it is turned into a prefix
123 match by appending `/{asterisk}`.
a62be77f 124
7cceca5c
SD
125--show-toplevel::
126 Show the absolute path of the top-level directory.
127
5077fa9c 128--show-prefix::
5f94c730 129 When the command is invoked from a subdirectory, show the
5077fa9c
JH
130 path of the current directory relative to the top-level
131 directory.
7fc9d69f 132
5f94c730
JH
133--show-cdup::
134 When the command is invoked from a subdirectory, show the
135 path of the top-level directory relative to the current
136 directory (typically a sequence of "../", or an empty string).
137
735d80b3 138--git-dir::
80d868b0
JN
139 Show `$GIT_DIR` if defined. Otherwise show the path to
140 the .git directory, relative to the current directory.
141+
142If `$GIT_DIR` is not defined and the current directory
143is not detected to lie in a git repository or work tree
144print a message to stderr and exit with nonzero status.
735d80b3 145
c9bf7be2 146--is-inside-git-dir::
4faac246
ML
147 When the current working directory is below the repository
148 directory print "true", otherwise "false".
149
892c41b9
ML
150--is-inside-work-tree::
151 When the current working directory is inside the work tree of the
152 repository print "true", otherwise "false".
153
493c774e
ML
154--is-bare-repository::
155 When the repository is bare print "true", otherwise "false".
c9bf7be2 156
94c8ccaa
GB
157--local-env-vars::
158 List the GIT_* environment variables that are local to the
159 repository (e.g. GIT_DIR or GIT_WORK_TREE, but not GIT_EDITOR).
160 Only the names of the variables are listed, not their value,
161 even if they are set.
162
3240240f
SB
163--short::
164--short=number::
735d80b3 165 Instead of outputting the full SHA1 values of object names try to
abda1ef5 166 abbreviate them to a shorter unique name. When no length is specified
735d80b3
JF
167 7 is used. The minimum length is 4.
168
3240240f
SB
169--since=datestring::
170--after=datestring::
483bc4f0 171 Parse the date string, and output the corresponding
0b444cdb 172 --max-age= parameter for 'git rev-list'.
a3114b34 173
3240240f
SB
174--until=datestring::
175--before=datestring::
483bc4f0 176 Parse the date string, and output the corresponding
0b444cdb 177 --min-age= parameter for 'git rev-list'.
a3114b34 178
7fc9d69f 179<args>...::
5077fa9c 180 Flags and parameters to be parsed.
7fc9d69f
JH
181
182
5a8f3117 183include::revisions.txt[]
be4c7014 184
21d47835
PH
185PARSEOPT
186--------
187
0b444cdb 188In `--parseopt` mode, 'git rev-parse' helps massaging options to bring to shell
21d47835
PH
189scripts the same facilities C builtins have. It works as an option normalizer
190(e.g. splits single switches aggregate values), a bit like `getopt(1)` does.
191
192It takes on the standard input the specification of the options to parse and
ac2e1e63 193understand, and echoes on the standard output a string suitable for `sh(1)` `eval`
21d47835
PH
194to replace the arguments with normalized ones. In case of error, it outputs
195usage on the standard error stream, and exits with code 129.
196
ac2e1e63
TR
197Note: Make sure you quote the result when passing it to `eval`. See
198below for an example.
199
21d47835
PH
200Input Format
201~~~~~~~~~~~~
202
0b444cdb 203'git rev-parse --parseopt' input format is fully text based. It has two parts,
21d47835
PH
204separated by a line that contains only `--`. The lines before the separator
205(should be more than one) are used for the usage.
206The lines after the separator describe the options.
207
208Each line of options has this format:
209
210------------
ff962a3f 211<opt_spec><flags>* SP+ help LF
21d47835
PH
212------------
213
214`<opt_spec>`::
215 its format is the short option character, then the long option name
216 separated by a comma. Both parts are not required, though at least one
217 is necessary. `h,help`, `dry-run` and `f` are all three correct
218 `<opt_spec>`.
219
ff962a3f
PH
220`<flags>`::
221 `<flags>` are of `*`, `=`, `?` or `!`.
222 * Use `=` if the option takes an argument.
223
224 * Use `?` to mean that the option is optional (though its use is discouraged).
225
226 * Use `*` to mean that this option should not be listed in the usage
227 generated for the `-h` argument. It's shown for `--help-all` as
a5af0e2c 228 documented in linkgit:gitcli[7].
ff962a3f
PH
229
230 * Use `!` to not make the corresponding negated long option available.
21d47835
PH
231
232The remainder of the line, after stripping the spaces, is used
233as the help associated to the option.
234
235Blank lines are ignored, and lines that don't match this specification are used
236as option group headers (start the line with a space to create such
237lines on purpose).
238
239Example
240~~~~~~~
241
242------------
243OPTS_SPEC="\
244some-command [options] <args>...
245
246some-command does foo and bar!
247--
248h,help show the help
249
250foo some nifty option --foo
251bar= some cool option --bar with an argument
252
253 An option group Header
254C? option C with an optional argument"
255
ac2e1e63 256eval "$(echo "$OPTS_SPEC" | git rev-parse --parseopt -- "$@" || echo exit $?)"
21d47835
PH
257------------
258
50325377
CC
259SQ-QUOTE
260--------
261
0b444cdb 262In `--sq-quote` mode, 'git rev-parse' echoes on the standard output a
50325377
CC
263single line suitable for `sh(1)` `eval`. This line is made by
264normalizing the arguments following `--sq-quote`. Nothing other than
265quoting the arguments is done.
266
267If you want command input to still be interpreted as usual by
0b444cdb 268'git rev-parse' before the output is shell quoted, see the `--sq`
50325377
CC
269option.
270
271Example
272~~~~~~~
273
274------------
275$ cat >your-git-script.sh <<\EOF
276#!/bin/sh
277args=$(git rev-parse --sq-quote "$@") # quote user-supplied arguments
278command="git frotz -n24 $args" # and use it inside a handcrafted
279 # command line
280eval "$command"
281EOF
282
283$ sh your-git-script.sh "a b'c"
284------------
285
824b5dc2
CC
286EXAMPLES
287--------
288
289* Print the object name of the current commit:
290+
291------------
292$ git rev-parse --verify HEAD
293------------
294
295* Print the commit object name from the revision in the $REV shell variable:
296+
297------------
298$ git rev-parse --verify $REV
299------------
300+
301This will error out if $REV is empty or not a valid revision.
302
303* Same as above:
304+
305------------
306$ git rev-parse --default master --verify $REV
307------------
308+
309but if $REV is empty, the commit object name from master will be printed.
310
7fc9d69f
JH
311GIT
312---
9e1f0a85 313Part of the linkgit:git[1] suite