Merge branch 'jk/diff-tree-t-fix' into next
[git/jrn.git] / Documentation / git-rev-parse.txt
blobc10cc62d1c387d66ecce1a0e9f810a90efe0c94b
1 git-rev-parse(1)
2 ================
4 NAME
5 ----
6 git-rev-parse - Pick out and massage parameters
9 SYNOPSIS
10 --------
11 [verse]
12 'git rev-parse' [ --option ] <args>...
14 DESCRIPTION
15 -----------
17 Many Git porcelainish commands take mixture of flags
18 (i.e. parameters that begin with a dash '-') and parameters
19 meant for the underlying 'git rev-list' command they use internally
20 and flags and parameters for the other commands they use
21 downstream of 'git rev-list'.  This command is used to
22 distinguish between them.
25 OPTIONS
26 -------
28 Operation Modes
29 ~~~~~~~~~~~~~~~
31 Each of these options must appear first on the command line.
33 --parseopt::
34         Use 'git rev-parse' in option parsing mode (see PARSEOPT section below).
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
39         mode does only quoting. Nothing else is done to command input.
41 Options for --parseopt
42 ~~~~~~~~~~~~~~~~~~~~~~
44 --keep-dashdash::
45         Only meaningful in `--parseopt` mode. Tells the option parser to echo
46         out the first `--` met instead of skipping it.
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
51         that take options themselves.
53 --stuck-long::
54         Only meaningful in `--parseopt` mode. Output the options in their
55         long form if available, and with their arguments stuck.
57 Options for Filtering
58 ~~~~~~~~~~~~~~~~~~~~~
60 --revs-only::
61         Do not output flags and parameters not meant for
62         'git rev-list' command.
64 --no-revs::
65         Do not output flags and parameters meant for
66         'git rev-list' command.
68 --flags::
69         Do not output non-flag parameters.
71 --no-flags::
72         Do not output flag parameters.
74 Options for Output
75 ~~~~~~~~~~~~~~~~~~
77 --default <arg>::
78         If there is no parameter given by the user, use `<arg>`
79         instead.
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.
87 This can be used to convert arguments to a command run in a subdirectory
88 so that they can still be used after moving to the top-level of the
89 repository.  For example:
91 ----
92 prefix=$(git rev-parse --show-prefix)
93 cd "$(git rev-parse --show-toplevel)"
94 eval "set -- $(git rev-parse --sq --prefix "$prefix" "$@")"
95 ----
97 --verify::
98         Verify that exactly one parameter is provided, and that it
99         can be turned into a raw 20-byte SHA-1 that can be used to
100         access the object database. If so, emit it to the standard
101         output; otherwise, error out.
103 If you want to make sure that the output actually names an object in
104 your object database and/or can be used as a specific type of object
105 you require, you can add "\^{type}" peeling operator to the parameter.
106 For example, `git rev-parse "$VAR^{commit}"` will make sure `$VAR`
107 names an existing object that is a commit-ish (i.e. a commit, or an
108 annotated tag that points at a commit).  To make sure that `$VAR`
109 names an existing object of any type, `git rev-parse "$VAR^{object}"`
110 can be used.
112 -q::
113 --quiet::
114         Only meaningful in `--verify` mode. Do not output an error
115         message if the first argument is not a valid object name;
116         instead exit with non-zero status silently.
118 --sq::
119         Usually the output is made one line per flag and
120         parameter.  This option makes output a single line,
121         properly quoted for consumption by shell.  Useful when
122         you expect your parameter to contain whitespaces and
123         newlines (e.g. when using pickaxe `-S` with
124         'git diff-{asterisk}'). In contrast to the `--sq-quote` option,
125         the command input is still interpreted as usual.
127 --not::
128         When showing object names, prefix them with '{caret}' and
129         strip '{caret}' prefix from the object names that already have
130         one.
132 --abbrev-ref[=(strict|loose)]::
133         A non-ambiguous short name of the objects name.
134         The option core.warnAmbiguousRefs is used to select the strict
135         abbreviation mode.
137 --short::
138 --short=number::
139         Instead of outputting the full SHA-1 values of object names try to
140         abbreviate them to a shorter unique name. When no length is specified
141         7 is used. The minimum length is 4.
143 --symbolic::
144         Usually the object names are output in SHA-1 form (with
145         possible '{caret}' prefix); this option makes them output in a
146         form as close to the original input as possible.
148 --symbolic-full-name::
149         This is similar to \--symbolic, but it omits input that
150         are not refs (i.e. branch or tag names; or more
151         explicitly disambiguating "heads/master" form, when you
152         want to name the "master" branch when there is an
153         unfortunately named tag "master"), and show them as full
154         refnames (e.g. "refs/heads/master").
156 Options for Objects
157 ~~~~~~~~~~~~~~~~~~~
159 --all::
160         Show all refs found in `refs/`.
162 --branches[=pattern]::
163 --tags[=pattern]::
164 --remotes[=pattern]::
165         Show all branches, tags, or remote-tracking branches,
166         respectively (i.e., refs found in `refs/heads`,
167         `refs/tags`, or `refs/remotes`, respectively).
169 If a `pattern` is given, only refs matching the given shell glob are
170 shown.  If the pattern does not contain a globbing character (`?`,
171 `*`, or `[`), it is turned into a prefix match by appending `/*`.
173 --glob=pattern::
174         Show all refs matching the shell glob pattern `pattern`. If
175         the pattern does not start with `refs/`, this is automatically
176         prepended.  If the pattern does not contain a globbing
177         character (`?`, `*`, or `[`), it is turned into a prefix
178         match by appending `/*`.
180 --exclude=<glob-pattern>::
181         Do not include refs matching '<glob-pattern>' that the next `--all`,
182         `--branches`, `--tags`, `--remotes`, or `--glob` would otherwise
183         consider. Repetitions of this option accumulate exclusion patterns
184         up to the next `--all`, `--branches`, `--tags`, `--remotes`, or
185         `--glob` option (other options or arguments do not clear
186         accumlated patterns).
188 The patterns given should not begin with `refs/heads`, `refs/tags`, or
189 `refs/remotes` when applied to `--branches`, `--tags`, or `--remotes`,
190 respectively, and they must begin with `refs/` when applied to `--glob`
191 or `--all`. If a trailing '/{asterisk}' is intended, it must be given
192 explicitly.
194 --disambiguate=<prefix>::
195         Show every object whose name begins with the given prefix.
196         The <prefix> must be at least 4 hexadecimal digits long to
197         avoid listing each and every object in the repository by
198         mistake.
200 Options for Files
201 ~~~~~~~~~~~~~~~~~
203 --local-env-vars::
204         List the GIT_* environment variables that are local to the
205         repository (e.g. GIT_DIR or GIT_WORK_TREE, but not GIT_EDITOR).
206         Only the names of the variables are listed, not their value,
207         even if they are set.
209 --git-dir::
210         Show `$GIT_DIR` if defined. Otherwise show the path to
211         the .git directory. The path shown, when relative, is
212         relative to the current working directory.
214 If `$GIT_DIR` is not defined and the current directory
215 is not detected to lie in a Git repository or work tree
216 print a message to stderr and exit with nonzero status.
218 --git-common-dir::
219         Show `$GIT_COMMON_DIR` if defined, else `$GIT_DIR`.
221 --is-inside-git-dir::
222         When the current working directory is below the repository
223         directory print "true", otherwise "false".
225 --is-inside-work-tree::
226         When the current working directory is inside the work tree of the
227         repository print "true", otherwise "false".
229 --is-bare-repository::
230         When the repository is bare print "true", otherwise "false".
232 --resolve-git-dir <path>::
233         Check if <path> is a valid repository or a gitfile that
234         points at a valid repository, and print the location of the
235         repository.  If <path> is a gitfile then the resolved path
236         to the real repository is printed.
238 --git-path <path>::
239         Resolve "$GIT_DIR/<path>" and takes other path relocation
240         variables such as $GIT_OBJECT_DIRECTORY,
241         $GIT_INDEX_FILE... into account. For example, if
242         $GIT_OBJECT_DIRECTORY is set to /foo/bar then "git rev-parse
243         --git-path objects/abc" returns /foo/bar/abc.
245 --show-cdup::
246         When the command is invoked from a subdirectory, show the
247         path of the top-level directory relative to the current
248         directory (typically a sequence of "../", or an empty string).
250 --show-prefix::
251         When the command is invoked from a subdirectory, show the
252         path of the current directory relative to the top-level
253         directory.
255 --show-toplevel::
256         Show the absolute path of the top-level directory.
258 --shared-index-path::
259         Show the path to the shared index file in split index mode, or
260         empty if not in split-index mode.
262 Other Options
263 ~~~~~~~~~~~~~
265 --since=datestring::
266 --after=datestring::
267         Parse the date string, and output the corresponding
268         --max-age= parameter for 'git rev-list'.
270 --until=datestring::
271 --before=datestring::
272         Parse the date string, and output the corresponding
273         --min-age= parameter for 'git rev-list'.
275 <args>...::
276         Flags and parameters to be parsed.
279 include::revisions.txt[]
281 PARSEOPT
282 --------
284 In `--parseopt` mode, 'git rev-parse' helps massaging options to bring to shell
285 scripts the same facilities C builtins have. It works as an option normalizer
286 (e.g. splits single switches aggregate values), a bit like `getopt(1)` does.
288 It takes on the standard input the specification of the options to parse and
289 understand, and echoes on the standard output a string suitable for `sh(1)` `eval`
290 to replace the arguments with normalized ones.  In case of error, it outputs
291 usage on the standard error stream, and exits with code 129.
293 Note: Make sure you quote the result when passing it to `eval`.  See
294 below for an example.
296 Input Format
297 ~~~~~~~~~~~~
299 'git rev-parse --parseopt' input format is fully text based. It has two parts,
300 separated by a line that contains only `--`. The lines before the separator
301 (should be one or more) are used for the usage.
302 The lines after the separator describe the options.
304 Each line of options has this format:
306 ------------
307 <opt-spec><flags>*<arg-hint>? SP+ help LF
308 ------------
310 `<opt-spec>`::
311         its format is the short option character, then the long option name
312         separated by a comma. Both parts are not required, though at least one
313         is necessary. `h,help`, `dry-run` and `f` are all three correct
314         `<opt-spec>`.
316 `<flags>`::
317         `<flags>` are of `*`, `=`, `?` or `!`.
318         * Use `=` if the option takes an argument.
320         * Use `?` to mean that the option takes an optional argument. You
321           probably want to use the `--stuck-long` mode to be able to
322           unambiguously parse the optional argument.
324         * Use `*` to mean that this option should not be listed in the usage
325           generated for the `-h` argument. It's shown for `--help-all` as
326           documented in linkgit:gitcli[7].
328         * Use `!` to not make the corresponding negated long option available.
330 `<arg-hint>`::
331         `<arg-hint>`, if specified, is used as a name of the argument in the
332         help output, for options that take arguments. `<arg-hint>` is
333         terminated by the first whitespace.  It is customary to use a
334         dash to separate words in a multi-word argument hint.
336 The remainder of the line, after stripping the spaces, is used
337 as the help associated to the option.
339 Blank lines are ignored, and lines that don't match this specification are used
340 as option group headers (start the line with a space to create such
341 lines on purpose).
343 Example
344 ~~~~~~~
346 ------------
347 OPTS_SPEC="\
348 some-command [options] <args>...
350 some-command does foo and bar!
352 h,help    show the help
354 foo       some nifty option --foo
355 bar=      some cool option --bar with an argument
356 baz=arg   another cool option --baz with a named argument
357 qux?path  qux may take a path argument but has meaning by itself
359   An option group Header
360 C?        option C with an optional argument"
362 eval "$(echo "$OPTS_SPEC" | git rev-parse --parseopt -- "$@" || echo exit $?)"
363 ------------
366 Usage text
367 ~~~~~~~~~~
369 When `"$@"` is `-h` or `--help` in the above example, the following
370 usage text would be shown:
372 ------------
373 usage: some-command [options] <args>...
375     some-command does foo and bar!
377     -h, --help            show the help
378     --foo                 some nifty option --foo
379     --bar ...             some cool option --bar with an argument
380     --baz <arg>           another cool option --baz with a named argument
381     --qux[=<path>]        qux may take a path argument but has meaning by itself
383 An option group Header
384     -C[...]               option C with an optional argument
385 ------------
387 SQ-QUOTE
388 --------
390 In `--sq-quote` mode, 'git rev-parse' echoes on the standard output a
391 single line suitable for `sh(1)` `eval`. This line is made by
392 normalizing the arguments following `--sq-quote`. Nothing other than
393 quoting the arguments is done.
395 If you want command input to still be interpreted as usual by
396 'git rev-parse' before the output is shell quoted, see the `--sq`
397 option.
399 Example
400 ~~~~~~~
402 ------------
403 $ cat >your-git-script.sh <<\EOF
404 #!/bin/sh
405 args=$(git rev-parse --sq-quote "$@")   # quote user-supplied arguments
406 command="git frotz -n24 $args"          # and use it inside a handcrafted
407                                         # command line
408 eval "$command"
411 $ sh your-git-script.sh "a b'c"
412 ------------
414 EXAMPLES
415 --------
417 * Print the object name of the current commit:
419 ------------
420 $ git rev-parse --verify HEAD
421 ------------
423 * Print the commit object name from the revision in the $REV shell variable:
425 ------------
426 $ git rev-parse --verify $REV^{commit}
427 ------------
429 This will error out if $REV is empty or not a valid revision.
431 * Similar to above:
433 ------------
434 $ git rev-parse --default master --verify $REV
435 ------------
437 but if $REV is empty, the commit object name from master will be printed.
441 Part of the linkgit:git[1] suite