6 git-rev-parse - Pick out and massage parameters
12 'git rev-parse' [ --option ] <args>...
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.
31 Each of these options must appear first on the command line.
34 Use 'git rev-parse' in option parsing mode (see PARSEOPT section below).
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 ~~~~~~~~~~~~~~~~~~~~~~
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.
54 Only meaningful in `--parseopt` mode. Output the options in their
55 long form if available, and with their arguments stuck.
61 Do not output flags and parameters not meant for
62 'git rev-list' command.
65 Do not output flags and parameters meant for
66 'git rev-list' command.
69 Do not output non-flag parameters.
72 Do not output flag parameters.
78 If there is no parameter given by the user, use `<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
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:
92 prefix=$(git rev-parse --show-prefix)
93 cd "$(git rev-parse --show-toplevel)"
94 eval "set -- $(git rev-parse --sq --prefix "$prefix" "$@")"
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}"`
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.
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.
128 When showing object names, prefix them with '{caret}' and
129 strip '{caret}' prefix from the object names that already have
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
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.
144 Skip the following object names. For example:
145 '--branches --except master' will show all the branches, except master.
146 This differs from --not in that --except will still show the object, if
147 they are referenced by another object name.
150 Usually the object names are output in SHA-1 form (with
151 possible '{caret}' prefix); this option makes them output in a
152 form as close to the original input as possible.
154 --symbolic-full-name::
155 This is similar to \--symbolic, but it omits input that
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
159 unfortunately named tag "master"), and show them as full
160 refnames (e.g. "refs/heads/master").
166 Show all refs found in `refs/`.
168 --branches[=pattern]::
170 --remotes[=pattern]::
171 Show all branches, tags, or remote-tracking branches,
172 respectively (i.e., refs found in `refs/heads`,
173 `refs/tags`, or `refs/remotes`, respectively).
175 If a `pattern` is given, only refs matching the given shell glob are
176 shown. If the pattern does not contain a globbing character (`?`,
177 `*`, or `[`), it is turned into a prefix match by appending `/*`.
180 Show all refs matching the shell glob pattern `pattern`. If
181 the pattern does not start with `refs/`, this is automatically
182 prepended. If the pattern does not contain a globbing
183 character (`?`, `*`, or `[`), it is turned into a prefix
184 match by appending `/*`.
186 --exclude=<glob-pattern>::
187 Do not include refs matching '<glob-pattern>' that the next `--all`,
188 `--branches`, `--tags`, `--remotes`, or `--glob` would otherwise
189 consider. Repetitions of this option accumulate exclusion patterns
190 up to the next `--all`, `--branches`, `--tags`, `--remotes`, or
191 `--glob` option (other options or arguments do not clear
192 accumlated patterns).
194 The patterns given should not begin with `refs/heads`, `refs/tags`, or
195 `refs/remotes` when applied to `--branches`, `--tags`, or `--remotes`,
196 respectively, and they must begin with `refs/` when applied to `--glob`
197 or `--all`. If a trailing '/{asterisk}' is intended, it must be given
200 --disambiguate=<prefix>::
201 Show every object whose name begins with the given prefix.
202 The <prefix> must be at least 4 hexadecimal digits long to
203 avoid listing each and every object in the repository by
210 List the GIT_* environment variables that are local to the
211 repository (e.g. GIT_DIR or GIT_WORK_TREE, but not GIT_EDITOR).
212 Only the names of the variables are listed, not their value,
213 even if they are set.
216 Show `$GIT_DIR` if defined. Otherwise show the path to
217 the .git directory. The path shown, when relative, is
218 relative to the current working directory.
220 If `$GIT_DIR` is not defined and the current directory
221 is not detected to lie in a Git repository or work tree
222 print a message to stderr and exit with nonzero status.
224 --is-inside-git-dir::
225 When the current working directory is below the repository
226 directory print "true", otherwise "false".
228 --is-inside-work-tree::
229 When the current working directory is inside the work tree of the
230 repository print "true", otherwise "false".
232 --is-bare-repository::
233 When the repository is bare print "true", otherwise "false".
235 --resolve-git-dir <path>::
236 Check if <path> is a valid repository or a gitfile that
237 points at a valid repository, and print the location of the
238 repository. If <path> is a gitfile then the resolved path
239 to the real repository is printed.
242 When the command is invoked from a subdirectory, show the
243 path of the top-level directory relative to the current
244 directory (typically a sequence of "../", or an empty string).
247 When the command is invoked from a subdirectory, show the
248 path of the current directory relative to the top-level
252 Show the absolute path of the top-level directory.
259 Parse the date string, and output the corresponding
260 --max-age= parameter for 'git rev-list'.
263 --before=datestring::
264 Parse the date string, and output the corresponding
265 --min-age= parameter for 'git rev-list'.
268 Flags and parameters to be parsed.
271 include::revisions.txt[]
276 In `--parseopt` mode, 'git rev-parse' helps massaging options to bring to shell
277 scripts the same facilities C builtins have. It works as an option normalizer
278 (e.g. splits single switches aggregate values), a bit like `getopt(1)` does.
280 It takes on the standard input the specification of the options to parse and
281 understand, and echoes on the standard output a string suitable for `sh(1)` `eval`
282 to replace the arguments with normalized ones. In case of error, it outputs
283 usage on the standard error stream, and exits with code 129.
285 Note: Make sure you quote the result when passing it to `eval`. See
286 below for an example.
291 'git rev-parse --parseopt' input format is fully text based. It has two parts,
292 separated by a line that contains only `--`. The lines before the separator
293 (should be more than one) are used for the usage.
294 The lines after the separator describe the options.
296 Each line of options has this format:
299 <opt_spec><flags>* SP+ help LF
303 its format is the short option character, then the long option name
304 separated by a comma. Both parts are not required, though at least one
305 is necessary. `h,help`, `dry-run` and `f` are all three correct
309 `<flags>` are of `*`, `=`, `?` or `!`.
310 * Use `=` if the option takes an argument.
312 * Use `?` to mean that the option takes an optional argument. You
313 probably want to use the `--stuck-long` mode to be able to
314 unambiguously parse the optional argument.
316 * Use `*` to mean that this option should not be listed in the usage
317 generated for the `-h` argument. It's shown for `--help-all` as
318 documented in linkgit:gitcli[7].
320 * Use `!` to not make the corresponding negated long option available.
322 The remainder of the line, after stripping the spaces, is used
323 as the help associated to the option.
325 Blank lines are ignored, and lines that don't match this specification are used
326 as option group headers (start the line with a space to create such
334 some-command [options] <args>...
336 some-command does foo and bar!
340 foo some nifty option --foo
341 bar= some cool option --bar with an argument
343 An option group Header
344 C? option C with an optional argument"
346 eval "$(echo "$OPTS_SPEC" | git rev-parse --parseopt -- "$@" || echo exit $?)"
352 In `--sq-quote` mode, 'git rev-parse' echoes on the standard output a
353 single line suitable for `sh(1)` `eval`. This line is made by
354 normalizing the arguments following `--sq-quote`. Nothing other than
355 quoting the arguments is done.
357 If you want command input to still be interpreted as usual by
358 'git rev-parse' before the output is shell quoted, see the `--sq`
365 $ cat >your-git-script.sh <<\EOF
367 args=$(git rev-parse --sq-quote "$@") # quote user-supplied arguments
368 command="git frotz -n24 $args" # and use it inside a handcrafted
373 $ sh your-git-script.sh "a b'c"
379 * Print the object name of the current commit:
382 $ git rev-parse --verify HEAD
385 * Print the commit object name from the revision in the $REV shell variable:
388 $ git rev-parse --verify $REV^{commit}
391 This will error out if $REV is empty or not a valid revision.
396 $ git rev-parse --default master --verify $REV
399 but if $REV is empty, the commit object name from master will be printed.
403 Part of the linkgit:git[1] suite