2 .\" Title: git-rev-parse
3 .\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
7 .\" Source: Git 2.44.0.568.g436d4e5b14
10 .TH "GIT\-REV\-PARSE" "1" "2024\-04\-10" "Git 2\&.44\&.0\&.568\&.g436d4e" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
25 .\" disable justification (adjust text to left margin only)
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
31 git-rev-parse \- Pick out and massage parameters
35 \fIgit rev\-parse\fR [<options>] <arg>\&...
40 Many Git porcelainish commands take a mixture of flags (i\&.e\&. parameters that begin with a dash \fI\-\fR) and parameters meant for the underlying \fIgit rev\-list\fR command they use internally and flags and parameters for the other commands they use downstream of \fIgit rev\-list\fR\&. This command is used to distinguish between them\&.
44 Each of these options must appear first on the command line\&.
50 in option parsing mode (see PARSEOPT section below)\&.
57 in shell quoting mode (see SQ\-QUOTE section below)\&. In contrast to the
59 option below, this mode only does quoting\&. Nothing else is done to command input\&.
61 .SS "Options for \-\-parseopt"
67 mode\&. Tells the option parser to echo out the first
69 met instead of skipping it\&.
72 \-\-stop\-at\-non\-option
76 mode\&. Lets the option parser stop at the first non\-option argument\&. This can be used to parse sub\-commands that take options themselves\&.
83 mode\&. Output the options in their long form if available, and with their arguments stuck\&.
85 .SS "Options for Filtering"
89 Do not output flags and parameters not meant for
96 Do not output flags and parameters meant for
103 Do not output non\-flag parameters\&.
108 Do not output flag parameters\&.
110 .SS "Options for Output"
114 If there is no parameter given by the user, use
125 subdirectory of the working tree\&. Any relative filenames are resolved as if they are prefixed by
127 and will be printed in that form\&.
129 This can be used to convert arguments to a command run in a subdirectory so that they can still be used after moving to the top\-level of the repository\&. For example:
135 prefix=$(git rev\-parse \-\-show\-prefix)
136 cd "$(git rev\-parse \-\-show\-toplevel)"
137 # rev\-parse provides the \-\- needed for \*(Aqset\*(Aq
138 eval "set $(git rev\-parse \-\-sq \-\-prefix "$prefix" \-\- "$@")"
148 Verify that exactly one parameter is provided, and that it can be turned into a raw 20\-byte SHA\-1 that can be used to access the object database\&. If so, emit it to the standard output; otherwise, error out\&.
150 If you want to make sure that the output actually names an object in your object database and/or can be used as a specific type of object you require, you can add the
152 peeling operator to the parameter\&. For example,
153 \fBgit rev\-parse "$VAR^{commit}"\fR
156 names an existing object that is a commit\-ish (i\&.e\&. a commit, or an annotated tag that points at a commit)\&. To make sure that
158 names an existing object of any type,
159 \fBgit rev\-parse "$VAR^{object}"\fR
162 Note that if you are verifying a name from an untrusted source, it is wise to use
163 \fB\-\-end\-of\-options\fR
164 so that the name argument is not mistaken for another option\&.
171 mode\&. Do not output an error message if the first argument is not a valid object name; instead exit with non\-zero status silently\&. SHA\-1s for valid object names are printed to stdout on success\&.
176 Usually the output is made one line per flag and parameter\&. This option makes output a single line, properly quoted for consumption by shell\&. Useful when you expect your parameter to contain whitespaces and newlines (e\&.g\&. when using pickaxe
179 \fIgit diff\-*\fR)\&. In contrast to the
181 option, the command input is still interpreted as usual\&.
188 but shortens the object name to a unique prefix with at least
190 characters\&. The minimum length is 4, the default is the effective value of the
192 configuration variable (see
193 \fBgit-config\fR(1))\&.
198 When showing object names, prefix them with
202 prefix from the object names that already have one\&.
205 \-\-abbrev\-ref[=(strict|loose)]
207 A non\-ambiguous short name of the objects name\&. The option core\&.warnAmbiguousRefs is used to select the strict abbreviation mode\&.
212 Usually the object names are output in SHA\-1 form (with possible
214 prefix); this option makes them output in a form as close to the original input as possible\&.
217 \-\-symbolic\-full\-name
219 This is similar to \-\-symbolic, but it omits input that are not refs (i\&.e\&. branch or tag names; or more explicitly disambiguating "heads/master" form, when you want to name the "master" branch when there is an unfortunately named tag "master"), and shows them as full refnames (e\&.g\&. "refs/heads/master")\&.
222 \-\-output\-object\-format=(sha1|sha256|storage)
224 Allow oids to be input from any object format that the current repository supports\&.
230 Specifying "sha1" translates if necessary and returns a sha1 oid\&.
240 Specifying "sha256" translates if necessary and returns a sha256 oid\&.
250 Specifying "storage" translates if necessary and returns an oid in
251 encoded in the storage hash algorithm\&.
257 .SS "Options for Objects"
261 Show all refs found in
265 \-\-branches[=<pattern>], \-\-tags[=<pattern>], \-\-remotes[=<pattern>]
267 Show all branches, tags, or remote\-tracking branches, respectively (i\&.e\&., refs found in
270 \fBrefs/remotes\fR, respectively)\&.
274 is given, only refs matching the given shell glob are shown\&. If the pattern does not contain a globbing character (\fB?\fR,
276 \fB[\fR), it is turned into a prefix match by appending
282 Show all refs matching the shell glob pattern
283 \fBpattern\fR\&. If the pattern does not start with
284 \fBrefs/\fR, this is automatically prepended\&. If the pattern does not contain a globbing character (\fB?\fR,
286 \fB[\fR), it is turned into a prefix match by appending
290 \-\-exclude=<glob\-pattern>
292 Do not include refs matching
293 \fI<glob\-pattern>\fR
298 \fB\-\-remotes\fR, or
300 would otherwise consider\&. Repetitions of this option accumulate exclusion patterns up to the next
304 \fB\-\-remotes\fR, or
306 option (other options or arguments do not clear accumulated patterns)\&.
308 The patterns given should not begin with
315 \fB\-\-remotes\fR, respectively, and they must begin with
320 \fB\-\-all\fR\&. If a trailing
322 is intended, it must be given explicitly\&.
325 \-\-exclude\-hidden=(fetch|receive|uploadpack)
327 Do not include refs that would be hidden by
329 \fBgit\-receive\-pack\fR
331 \fBgit\-upload\-pack\fR
332 by consulting the appropriate
333 \fBfetch\&.hideRefs\fR,
334 \fBreceive\&.hideRefs\fR
336 \fBuploadpack\&.hideRefs\fR
337 configuration along with
338 \fBtransfer\&.hideRefs\fR
340 \fBgit-config\fR(1))\&. This option affects the next pseudo\-ref option
344 and is cleared after processing them\&.
347 \-\-disambiguate=<prefix>
349 Show every object whose name begins with the given prefix\&. The <prefix> must be at least 4 hexadecimal digits long to avoid listing each and every object in the repository by mistake\&.
351 .SS "Options for Files"
355 List the GIT_* environment variables that are local to the repository (e\&.g\&. GIT_DIR or GIT_WORK_TREE, but not GIT_EDITOR)\&. Only the names of the variables are listed, not their value, even if they are set\&.
358 \-\-path\-format=(absolute|relative)
360 Controls the behavior of certain other options\&. If specified as absolute, the paths printed by those options will be absolute and canonical\&. If specified as relative, the paths will be relative to the current working directory if that is possible\&. The default is option specific\&.
362 This option may be specified multiple times and affects only the arguments that follow it on the command line, either to the end of the command line or the next instance of this option\&.
365 The following options are modified by \fB\-\-path\-format\fR:
371 if defined\&. Otherwise show the path to the \&.git directory\&. The path shown, when relative, is relative to the current working directory\&.
375 is not defined and the current directory is not detected to lie in a Git repository or work tree print a message to stderr and exit with nonzero status\&.
381 \fB$GIT_COMMON_DIR\fR
386 \-\-resolve\-git\-dir <path>
388 Check if <path> is a valid repository or a gitfile that points at a valid repository, and print the location of the repository\&. If <path> is a gitfile then the resolved path to the real repository is printed\&.
393 Resolve "$GIT_DIR/<path>" and takes other path relocation variables such as $GIT_OBJECT_DIRECTORY, $GIT_INDEX_FILE\&... into account\&. For example, if $GIT_OBJECT_DIRECTORY is set to /foo/bar then "git rev\-parse \-\-git\-path objects/abc" returns /foo/bar/abc\&.
398 Show the (by default, absolute) path of the top\-level directory of the working tree\&. If there is no working tree, report an error\&.
401 \-\-show\-superproject\-working\-tree
403 Show the absolute path of the root of the superproject\(cqs working tree (if exists) that uses the current repository as its submodule\&. Outputs nothing if the current repository is not used as a submodule by any project\&.
406 \-\-shared\-index\-path
408 Show the path to the shared index file in split index mode, or empty if not in split\-index mode\&.
411 The following options are unaffected by \fB\-\-path\-format\fR:
413 \-\-absolute\-git\-dir
416 \fB\-\-git\-dir\fR, but its output is always the canonicalized absolute path\&.
419 \-\-is\-inside\-git\-dir
421 When the current working directory is below the repository directory print "true", otherwise "false"\&.
424 \-\-is\-inside\-work\-tree
426 When the current working directory is inside the work tree of the repository print "true", otherwise "false"\&.
429 \-\-is\-bare\-repository
431 When the repository is bare print "true", otherwise "false"\&.
434 \-\-is\-shallow\-repository
436 When the repository is shallow print "true", otherwise "false"\&.
441 When the command is invoked from a subdirectory, show the path of the top\-level directory relative to the current directory (typically a sequence of "\&.\&./", or an empty string)\&.
446 When the command is invoked from a subdirectory, show the path of the current directory relative to the top\-level directory\&.
449 \-\-show\-object\-format[=(storage|input|output)]
451 Show the object format (hash algorithm) used for the repository for storage inside the
453 directory, input, or output\&. For input, multiple algorithms may be printed, space\-separated\&. If not specified, the default is "storage"\&.
456 \-\-show\-ref\-format
458 Show the reference storage format used for the repository\&.
462 \-\-since=<datestring>, \-\-after=<datestring>
464 Parse the date string, and output the corresponding \-\-max\-age= parameter for
465 \fIgit rev\-list\fR\&.
468 \-\-until=<datestring>, \-\-before=<datestring>
470 Parse the date string, and output the corresponding \-\-min\-age= parameter for
471 \fIgit rev\-list\fR\&.
476 Flags and parameters to be parsed\&.
478 .SH "SPECIFYING REVISIONS"
480 A revision parameter \fI<rev>\fR typically, but not necessarily, names a commit object\&. It uses what is called an \fIextended SHA\-1\fR syntax\&. Here are various ways to spell object names\&. The ones listed near the end of this list name trees and blobs contained in a commit\&.
486 .nr an-no-space-flag 1
494 This document shows the "raw" syntax as seen by git\&. The shell and other UIs might require additional quoting to protect special characters and to avoid word splitting\&.
498 \fI<sha1>\fR, e\&.g\&. \fIdae86e1950b1277e545cee180551750029cfe735\fR, \fIdae86e\fR
500 The full SHA\-1 object name (40\-byte hexadecimal string), or a leading substring that is unique within the repository\&. E\&.g\&. dae86e1950b1277e545cee180551750029cfe735 and dae86e both name the same commit object if there is no other object in your repository whose object name starts with dae86e\&.
503 \fI<describeOutput>\fR, e\&.g\&. \fIv1\&.7\&.4\&.2\-679\-g3bee7fb\fR
506 \fBgit describe\fR; i\&.e\&. a closest tag, optionally followed by a dash and a number of commits, followed by a dash, a
507 \fIg\fR, and an abbreviated object name\&.
510 \fI<refname>\fR, e\&.g\&. \fImaster\fR, \fIheads/master\fR, \fIrefs/heads/master\fR
512 A symbolic ref name\&. E\&.g\&.
514 typically means the commit object referenced by
515 \fIrefs/heads/master\fR\&. If you happen to have both
518 \fItags/master\fR, you can explicitly say
520 to tell Git which one you mean\&. When ambiguous, a
522 is disambiguated by taking the first match in the following rules:
533 \fI$GIT_DIR/<refname>\fR
534 exists, that is what you mean (this is usually useful only for
541 \fBCHERRY_PICK_HEAD\fR,
569 \fIrefs/tags/<refname>\fR
582 \fIrefs/heads/<refname>\fR
595 \fIrefs/remotes/<refname>\fR
608 \fIrefs/remotes/<refname>/HEAD\fR
614 names the commit on which you based the changes in the working tree\&.
619 records the branch which you fetched from a remote repository with your last
626 is created by commands that move your
628 in a drastic way (\fBgit am\fR,
631 \fBgit reset\fR), to record the position of the
633 before their operation, so that you can easily change the tip of the branch back to the state before you ran them\&.
638 records the commit(s) which you are merging into your branch when you run
644 during a rebase, records the commit at which the operation is currently stopped, either because of conflicts or an
646 command in an interactive rebase\&.
651 records the commit which you are reverting when you run
655 \fBCHERRY_PICK_HEAD\fR
657 records the commit which you are cherry\-picking when you run
658 \fBgit cherry\-pick\fR\&.
663 records the current commit to be tested when you run
664 \fBgit bisect \-\-no\-checkout\fR\&.
669 records a tree object corresponding to the state the
671 merge strategy wrote to the working tree when a merge operation resulted in conflicts\&.
676 cases above may come either from the
678 directory or from the
679 \fB$GIT_DIR/packed\-refs\fR
680 file\&. While the ref name encoding is unspecified, UTF\-8 is preferred as some output processing may assume ref names in UTF\-8\&.
686 alone is a shortcut for
690 \fI[<refname>]@{<date>}\fR, e\&.g\&. \fImaster@{yesterday}\fR, \fIHEAD@{5 minutes ago}\fR
692 A ref followed by the suffix
694 with a date specification enclosed in a brace pair (e\&.g\&.
696 \fI{1 month 2 weeks 3 days 1 hour 1 second ago}\fR
698 \fI{1979\-02\-26 18:30:00}\fR) specifies the value of the ref at a prior point in time\&. This suffix may only be used immediately following a ref name and the ref must have an existing log (\fI$GIT_DIR/logs/<ref>\fR)\&. Note that this looks up the state of your
700 ref at a given time; e\&.g\&., what was in your local
702 branch last week\&. If you want to look at commits made during certain times, see
708 \fI<refname>@{<n>}\fR, e\&.g\&. \fImaster@{1}\fR
710 A ref followed by the suffix
712 with an ordinal specification enclosed in a brace pair (e\&.g\&.
714 \fI{15}\fR) specifies the n\-th prior value of that ref\&. For example
716 is the immediate prior value of
720 is the 5th prior value of
721 \fImaster\fR\&. This suffix may only be used immediately following a ref name and the ref must have an existing log (\fI$GIT_DIR/logs/<refname>\fR)\&.
724 \fI@{<n>}\fR, e\&.g\&. \fI@{1}\fR
728 construct with an empty ref part to get at a reflog entry of the current branch\&. For example, if you are on branch
736 \fI@{\-<n>}\fR, e\&.g\&. \fI@{\-1}\fR
740 means the <n>th branch/commit checked out before the current one\&.
743 \fI[<branchname>]@{upstream}\fR, e\&.g\&. \fImaster@{upstream}\fR, \fI@{u}\fR
745 A branch B may be set up to build on top of a branch X (configured with
746 \fBbranch\&.<name>\&.merge\fR) at a remote R (configured with the branch X taken from remote R, typically found at
747 \fBrefs/remotes/R/X\fR\&.
750 \fI[<branchname>]@{push}\fR, e\&.g\&. \fImaster@{push}\fR, \fI@{push}\fR
754 reports the branch "where we would push to" if
758 was checked out (or the current
760 if no branchname is specified)\&. Like for
761 \fI@{upstream}\fR, we report the remote\-tracking branch that corresponds to that branch at the remote\&.
763 Here\(cqs an example to make it more clear:
769 $ git config push\&.default current
770 $ git config remote\&.pushdefault myfork
771 $ git switch \-c mybranch origin/master
773 $ git rev\-parse \-\-symbolic\-full\-name @{upstream}
774 refs/remotes/origin/master
776 $ git rev\-parse \-\-symbolic\-full\-name @{push}
777 refs/remotes/myfork/mybranch
783 Note in the example that we set up a triangular workflow, where we pull from one location and push to another\&. In a non\-triangular workflow,
786 \fI@{upstream}\fR, and there is no need for it\&.
788 This suffix is also accepted when spelled in uppercase, and means the same thing no matter the case\&.
791 \fI<rev>^[<n>]\fR, e\&.g\&. \fIHEAD^, v1\&.5\&.1^0\fR
795 to a revision parameter means the first parent of that commit object\&.
797 means the <n>th parent (i\&.e\&.
800 \fI<rev>^1\fR)\&. As a special rule,
802 means the commit itself and is used when
804 is the object name of a tag object that refers to a commit object\&.
807 \fI<rev>~[<n>]\fR, e\&.g\&. \fIHEAD~, master~3\fR
811 to a revision parameter means the first parent of that commit object\&. A suffix
813 to a revision parameter means the commit object that is the <n>th generation ancestor of the named commit object, following only the first parents\&. I\&.e\&.
817 which is equivalent to
818 \fI<rev>^1^1^1\fR\&. See below for an illustration of the usage of this form\&.
821 \fI<rev>^{<type>}\fR, e\&.g\&. \fIv0\&.99\&.8^{commit}\fR
825 followed by an object type name enclosed in brace pair means dereference the object at
827 recursively until an object of type
829 is found or the object cannot be dereferenced anymore (in which case, barf)\&. For example, if
833 describes the corresponding commit object\&. Similarly, if
837 describes the corresponding tree object\&.
840 \fI<rev>^{commit}\fR\&.
843 can be used to make sure
845 names an object that exists, without requiring
847 to be a tag, and without dereferencing
848 \fI<rev>\fR; because a tag is already an object, it does not have to be dereferenced even once to get to an object\&.
851 can be used to ensure that
853 identifies an existing tag object\&.
856 \fI<rev>^{}\fR, e\&.g\&. \fIv0\&.99\&.8^{}\fR
860 followed by an empty brace pair means the object could be a tag, and dereference the tag recursively until a non\-tag object is found\&.
863 \fI<rev>^{/<text>}\fR, e\&.g\&. \fIHEAD^{/fix nasty bug}\fR
867 to a revision parameter, followed by a brace pair that contains a text led by a slash, is the same as the
868 \fI:/fix nasty bug\fR
869 syntax below except that it returns the youngest matching commit which is reachable from the
875 \fI:/<text>\fR, e\&.g\&. \fI:/fix nasty bug\fR
877 A colon, followed by a slash, followed by a text, names a commit whose commit message matches the specified regular expression\&. This name returns the youngest matching commit which is reachable from any ref, including HEAD\&. The regular expression can match any part of the commit message\&. To match messages starting with a string, one can use e\&.g\&.
878 \fI:/^foo\fR\&. The special sequence
880 is reserved for modifiers to what is matched\&.
882 performs a negative match, while
886 character, followed by
887 \fIfoo\fR\&. Any other sequence beginning with
889 is reserved for now\&. Depending on the given text, the shell\(cqs word splitting rules might require additional quoting\&.
892 \fI<rev>:<path>\fR, e\&.g\&. \fIHEAD:README\fR, \fImaster:\&./README\fR
896 followed by a path names the blob or tree at the given path in the tree\-ish object named by the part before the colon\&. A path starting with
900 is relative to the current working directory\&. The given path will be converted to be relative to the working tree\(cqs root directory\&. This is most useful to address a blob or tree from a commit or tree that has the same tree structure as the working tree\&.
903 \fI:[<n>:]<path>\fR, e\&.g\&. \fI:0:README\fR, \fI:README\fR
905 A colon, optionally followed by a stage number (0 to 3) and a colon, followed by a path, names a blob object in the index at the given path\&. A missing stage number (and the colon that follows it) names a stage 0 entry\&. During a merge, stage 1 is the common ancestor, stage 2 is the target branch\(cqs version (typically the current branch), and stage 3 is the version from the branch which is being merged\&.
908 Here is an illustration, by Jon Loeliger\&. Both commit nodes B and C are parents of commit node A\&. Parent commits are ordered left\-to\-right\&.
936 D = A^^ = A^1^1 = A~2
939 G = A^^^ = A^1^1^1 = A~3
940 H = D^2 = B^^2 = A^^^2 = A~2^2
941 I = F^ = B^3^ = A^^3^
942 J = F^2 = B^3^2 = A^^3^2
947 .SH "SPECIFYING RANGES"
949 History traversing commands such as \fBgit log\fR operate on a set of commits, not just a single commit\&.
951 For these commands, specifying a single revision, using the notation described in the previous section, means the set of commits \fBreachable\fR from the given commit\&.
953 Specifying several revisions means the set of commits reachable from any of the given commits\&.
955 A commit\(cqs reachable set is the commit itself and the commits in its ancestry chain\&.
957 There are several notations to specify a set of connected commits (called a "revision range"), illustrated below\&.
958 .SS "Commit Exclusions"
960 \fI^<rev>\fR (caret) Notation
962 To exclude commits reachable from a commit, a prefix
964 notation is used\&. E\&.g\&.
966 means commits reachable from
968 but exclude the ones reachable from
972 and its ancestors)\&.
974 .SS "Dotted Range Notations"
976 The \fI\&.\&.\fR (two\-dot) Range Notation
980 set operation appears so often that there is a shorthand for it\&. When you have two commits
984 (named according to the syntax explained in SPECIFYING REVISIONS above), you can ask for commits that are reachable from r2 excluding those that are reachable from r1 by
986 and it can be written as
990 The \fI\&.\&.\&.\fR (three\-dot) Symmetric Difference Notation
994 is called symmetric difference of
999 \fIr1 r2 \-\-not $(git merge\-base \-\-all r1 r2)\fR\&. It is the set of commits that are reachable from either one of
1003 (right side) but not from both\&.
1006 In these two shorthand notations, you can omit one end and let it default to HEAD\&. For example, \fIorigin\&.\&.\fR is a shorthand for \fIorigin\&.\&.HEAD\fR and asks "What did I do since I forked from the origin branch?" Similarly, \fI\&.\&.origin\fR is a shorthand for \fIHEAD\&.\&.origin\fR and asks "What did the origin do since I forked from them?" Note that \fI\&.\&.\fR would mean \fIHEAD\&.\&.HEAD\fR which is an empty range that is both reachable and unreachable from HEAD\&.
1008 Commands that are specifically designed to take two distinct ranges (e\&.g\&. "git range\-diff R1 R2" to compare two ranges) do exist, but they are exceptions\&. Unless otherwise noted, all "git" commands that operate on a set of commits work on a single revision range\&. In other words, writing two "two\-dot range notation" next to each other, e\&.g\&.
1014 $ git log A\&.\&.B C\&.\&.D
1020 does \fBnot\fR specify two revision ranges for most commands\&. Instead it will name a single connected set of commits, i\&.e\&. those that are reachable from either B or D but are reachable from neither A or C\&. In a linear history like this:
1026 \-\-\-A\-\-\-B\-\-\-o\-\-\-o\-\-\-C\-\-\-D
1032 because A and B are reachable from C, the revision range specified by these two dotted ranges is a single commit D\&.
1033 .SS "Other <rev>^ Parent Shorthand Notations"
1035 Three other shorthands exist, particularly useful for merge commits, for naming a set that is formed by a commit and its parent commits\&.
1037 The \fIr1^@\fR notation means all parents of \fIr1\fR\&.
1039 The \fIr1^!\fR notation includes commit \fIr1\fR but excludes all of its parents\&. By itself, this notation denotes the single commit \fIr1\fR\&.
1041 The \fI<rev>^\-[<n>]\fR notation includes \fI<rev>\fR but excludes the <n>th parent (i\&.e\&. a shorthand for \fI<rev>^<n>\&.\&.<rev>\fR), with \fI<n>\fR = 1 if not given\&. This is typically useful for merge commits where you can just pass \fI<commit>^\-\fR to get all the commits in the branch that was merged in merge commit \fI<commit>\fR (including \fI<commit>\fR itself)\&.
1043 While \fI<rev>^<n>\fR was about specifying a single commit parent, these three notations also consider its parents\&. For example you can say \fIHEAD^2^@\fR, however you cannot say \fIHEAD^@^2\fR\&.
1044 .SH "REVISION RANGE SUMMARY"
1048 Include commits that are reachable from <rev> (i\&.e\&. <rev> and its ancestors)\&.
1053 Exclude commits that are reachable from <rev> (i\&.e\&. <rev> and its ancestors)\&.
1056 \fI<rev1>\&.\&.<rev2>\fR
1058 Include commits that are reachable from <rev2> but exclude those that are reachable from <rev1>\&. When either <rev1> or <rev2> is omitted, it defaults to
1062 \fI<rev1>\&.\&.\&.<rev2>\fR
1064 Include commits that are reachable from either <rev1> or <rev2> but exclude those that are reachable from both\&. When either <rev1> or <rev2> is omitted, it defaults to
1068 \fI<rev>^@\fR, e\&.g\&. \fIHEAD^@\fR
1072 followed by an at sign is the same as listing all parents of
1074 (meaning, include anything reachable from its parents, but not the commit itself)\&.
1077 \fI<rev>^!\fR, e\&.g\&. \fIHEAD^!\fR
1081 followed by an exclamation mark is the same as giving commit
1083 and all its parents prefixed with
1085 to exclude them (and their ancestors)\&.
1088 \fI<rev>^\-<n>\fR, e\&.g\&. \fIHEAD^\-, HEAD^\-2\fR
1091 \fI<rev>^<n>\&.\&.<rev>\fR, with
1096 Here are a handful of examples using the Loeliger illustration above, with each step in the notation\(cqs expansion and selection carefully spelt out:
1102 Args Expanded arguments Selected commits
1110 B\&.\&.\&.C = B ^F C G H D E B C
1116 = D E F D G H E F I J
1123 F^! D = F ^I ^J D G H D F
1130 In \fB\-\-parseopt\fR mode, \fIgit rev\-parse\fR helps massaging options to bring to shell scripts the same facilities C builtins have\&. It works as an option normalizer (e\&.g\&. splits single switches aggregate values), a bit like \fBgetopt(1)\fR does\&.
1132 It takes on the standard input the specification of the options to parse and understand, and echoes on the standard output a string suitable for \fBsh(1)\fR \fBeval\fR to replace the arguments with normalized ones\&. In case of error, it outputs usage on the standard error stream, and exits with code 129\&.
1134 Note: Make sure you quote the result when passing it to \fBeval\fR\&. See below for an example\&.
1137 \fIgit rev\-parse \-\-parseopt\fR input format is fully text based\&. It has two parts, separated by a line that contains only \fB\-\-\fR\&. The lines before the separator (should be one or more) are used for the usage\&. The lines after the separator describe the options\&.
1139 Each line of options has this format:
1145 <opt\-spec><flags>*<arg\-hint>? SP+ help LF
1155 its format is the short option character, then the long option name separated by a comma\&. Both parts are not required, though at least one is necessary\&. May not contain any of the
1162 are examples of correct
1163 \fB<opt\-spec>\fR\&.
1178 \h'-04'\(bu\h'+03'\c
1186 if the option takes an argument\&.
1191 \h'-04'\(bu\h'+03'\c
1199 to mean that the option takes an optional argument\&. You probably want to use the
1200 \fB\-\-stuck\-long\fR
1201 mode to be able to unambiguously parse the optional argument\&.
1206 \h'-04'\(bu\h'+03'\c
1214 to mean that this option should not be listed in the usage generated for the
1216 argument\&. It\(cqs shown for
1224 \h'-04'\(bu\h'+03'\c
1232 to not make the corresponding negated long option available\&.
1238 \fB<arg\-hint>\fR, if specified, is used as a name of the argument in the help output, for options that take arguments\&.
1240 is terminated by the first whitespace\&. It is customary to use a dash to separate words in a multi\-word argument hint\&.
1243 The remainder of the line, after stripping the spaces, is used as the help associated with the option\&.
1245 Blank lines are ignored, and lines that don\(cqt match this specification are used as option group headers (start the line with a space to create such lines on purpose)\&.
1253 some\-command [<options>] <args>\&.\&.\&.
1255 some\-command does foo and bar!
1257 h,help! show the help
1259 foo some nifty option \-\-foo
1260 bar= some cool option \-\-bar with an argument
1261 baz=arg another cool option \-\-baz with a named argument
1262 qux?path qux may take a path argument but has meaning by itself
1264 An option group Header
1265 C? option C with an optional argument"
1267 eval "$(echo "$OPTS_SPEC" | git rev\-parse \-\-parseopt \-\- "$@" || echo exit $?)"
1275 When \fB"$@"\fR is \fB\-h\fR or \fB\-\-help\fR in the above example, the following usage text would be shown:
1281 usage: some\-command [<options>] <args>\&.\&.\&.
1283 some\-command does foo and bar!
1285 \-h, \-\-help show the help
1286 \-\-[no\-]foo some nifty option \-\-foo
1287 \-\-[no\-]bar \&.\&.\&. some cool option \-\-bar with an argument
1288 \-\-[no\-]baz <arg> another cool option \-\-baz with a named argument
1289 \-\-[no\-]qux[=<path>] qux may take a path argument but has meaning by itself
1291 An option group Header
1292 \-C[\&.\&.\&.] option C with an optional argument
1300 In \fB\-\-sq\-quote\fR mode, \fIgit rev\-parse\fR echoes on the standard output a single line suitable for \fBsh(1)\fR \fBeval\fR\&. This line is made by normalizing the arguments following \fB\-\-sq\-quote\fR\&. Nothing other than quoting the arguments is done\&.
1302 If you want command input to still be interpreted as usual by \fIgit rev\-parse\fR before the output is shell quoted, see the \fB\-\-sq\fR option\&.
1309 $ cat >your\-git\-script\&.sh <<\eEOF
1311 args=$(git rev\-parse \-\-sq\-quote "$@") # quote user\-supplied arguments
1312 command="git frotz \-n24 $args" # and use it inside a handcrafted
1317 $ sh your\-git\-script\&.sh "a b\*(Aqc"
1327 \h'-04'\(bu\h'+03'\c
1333 Print the object name of the current commit:
1339 $ git rev\-parse \-\-verify HEAD
1349 \h'-04'\(bu\h'+03'\c
1355 Print the commit object name from the revision in the $REV shell variable:
1361 $ git rev\-parse \-\-verify \-\-end\-of\-options $REV^{commit}
1367 This will error out if $REV is empty or not a valid revision\&.
1372 \h'-04'\(bu\h'+03'\c
1384 $ git rev\-parse \-\-default master \-\-verify \-\-end\-of\-options $REV
1390 but if $REV is empty, the commit object name from master will be printed\&.
1394 Part of the \fBgit\fR(1) suite