summaryrefslogtreecommitdiffstats
path: root/man1/git-rev-parse.1
blob: 20852f9eda1aab410032f995ee7ba76a1d075c8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
'\" t
.\"     Title: git-rev-parse
.\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\"      Date: 2024-04-09
.\"    Manual: Git Manual
.\"    Source: Git 2.44.0.548.g91ec36f2cc
.\"  Language: English
.\"
.TH "GIT\-REV\-PARSE" "1" "2024\-04\-09" "Git 2\&.44\&.0\&.548\&.g91ec36" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el       .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH "NAME"
git-rev-parse \- Pick out and massage parameters
.SH "SYNOPSIS"
.sp
.nf
\fIgit rev\-parse\fR [<options>] <arg>\&...
.fi
.sp
.SH "DESCRIPTION"
.sp
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\&.
.SH "OPTIONS"
.SS "Operation Modes"
.sp
Each of these options must appear first on the command line\&.
.PP
\-\-parseopt
.RS 4
Use
\fIgit rev\-parse\fR
in option parsing mode (see PARSEOPT section below)\&.
.RE
.PP
\-\-sq\-quote
.RS 4
Use
\fIgit rev\-parse\fR
in shell quoting mode (see SQ\-QUOTE section below)\&. In contrast to the
\fB\-\-sq\fR
option below, this mode only does quoting\&. Nothing else is done to command input\&.
.RE
.SS "Options for \-\-parseopt"
.PP
\-\-keep\-dashdash
.RS 4
Only meaningful in
\fB\-\-parseopt\fR
mode\&. Tells the option parser to echo out the first
\fB\-\-\fR
met instead of skipping it\&.
.RE
.PP
\-\-stop\-at\-non\-option
.RS 4
Only meaningful in
\fB\-\-parseopt\fR
mode\&. Lets the option parser stop at the first non\-option argument\&. This can be used to parse sub\-commands that take options themselves\&.
.RE
.PP
\-\-stuck\-long
.RS 4
Only meaningful in
\fB\-\-parseopt\fR
mode\&. Output the options in their long form if available, and with their arguments stuck\&.
.RE
.SS "Options for Filtering"
.PP
\-\-revs\-only
.RS 4
Do not output flags and parameters not meant for
\fIgit rev\-list\fR
command\&.
.RE
.PP
\-\-no\-revs
.RS 4
Do not output flags and parameters meant for
\fIgit rev\-list\fR
command\&.
.RE
.PP
\-\-flags
.RS 4
Do not output non\-flag parameters\&.
.RE
.PP
\-\-no\-flags
.RS 4
Do not output flag parameters\&.
.RE
.SS "Options for Output"
.PP
\-\-default <arg>
.RS 4
If there is no parameter given by the user, use
\fB<arg>\fR
instead\&.
.RE
.PP
\-\-prefix <arg>
.RS 4
Behave as if
\fIgit rev\-parse\fR
was invoked from the
\fB<arg>\fR
subdirectory of the working tree\&. Any relative filenames are resolved as if they are prefixed by
\fB<arg>\fR
and will be printed in that form\&.
.sp
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:
.sp
.if n \{\
.RS 4
.\}
.nf
prefix=$(git rev\-parse \-\-show\-prefix)
cd "$(git rev\-parse \-\-show\-toplevel)"
# rev\-parse provides the \-\- needed for \*(Aqset\*(Aq
eval "set $(git rev\-parse \-\-sq \-\-prefix "$prefix" \-\- "$@")"
.fi
.if n \{\
.RE
.\}
.sp
.RE
.PP
\-\-verify
.RS 4
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\&.
.sp
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
\fB^{type}\fR
peeling operator to the parameter\&. For example,
\fBgit rev\-parse "$VAR^{commit}"\fR
will make sure
\fB$VAR\fR
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
\fB$VAR\fR
names an existing object of any type,
\fBgit rev\-parse "$VAR^{object}"\fR
can be used\&.
.sp
Note that if you are verifying a name from an untrusted source, it is wise to use
\fB\-\-end\-of\-options\fR
so that the name argument is not mistaken for another option\&.
.RE
.PP
\-q, \-\-quiet
.RS 4
Only meaningful in
\fB\-\-verify\fR
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\&.
.RE
.PP
\-\-sq
.RS 4
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
\fB\-S\fR
with
\fIgit diff\-*\fR)\&. In contrast to the
\fB\-\-sq\-quote\fR
option, the command input is still interpreted as usual\&.
.RE
.PP
\-\-short[=<length>]
.RS 4
Same as
\fB\-\-verify\fR
but shortens the object name to a unique prefix with at least
\fBlength\fR
characters\&. The minimum length is 4, the default is the effective value of the
\fBcore\&.abbrev\fR
configuration variable (see
\fBgit-config\fR(1))\&.
.RE
.PP
\-\-not
.RS 4
When showing object names, prefix them with
\fI^\fR
and strip
\fI^\fR
prefix from the object names that already have one\&.
.RE
.PP
\-\-abbrev\-ref[=(strict|loose)]
.RS 4
A non\-ambiguous short name of the objects name\&. The option core\&.warnAmbiguousRefs is used to select the strict abbreviation mode\&.
.RE
.PP
\-\-symbolic
.RS 4
Usually the object names are output in SHA\-1 form (with possible
\fI^\fR
prefix); this option makes them output in a form as close to the original input as possible\&.
.RE
.PP
\-\-symbolic\-full\-name
.RS 4
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")\&.
.RE
.PP
\-\-output\-object\-format=(sha1|sha256|storage)
.RS 4
Allow oids to be input from any object format that the current repository supports\&.
.sp
.if n \{\
.RS 4
.\}
.nf
Specifying "sha1" translates if necessary and returns a sha1 oid\&.
.fi
.if n \{\
.RE
.\}
.sp
.if n \{\
.RS 4
.\}
.nf
Specifying "sha256" translates if necessary and returns a sha256 oid\&.
.fi
.if n \{\
.RE
.\}
.sp
.if n \{\
.RS 4
.\}
.nf
Specifying "storage" translates if necessary and returns an oid in
encoded in the storage hash algorithm\&.
.fi
.if n \{\
.RE
.\}
.RE
.SS "Options for Objects"
.PP
\-\-all
.RS 4
Show all refs found in
\fBrefs/\fR\&.
.RE
.PP
\-\-branches[=<pattern>], \-\-tags[=<pattern>], \-\-remotes[=<pattern>]
.RS 4
Show all branches, tags, or remote\-tracking branches, respectively (i\&.e\&., refs found in
\fBrefs/heads\fR,
\fBrefs/tags\fR, or
\fBrefs/remotes\fR, respectively)\&.
.sp
If a
\fBpattern\fR
is given, only refs matching the given shell glob are shown\&. If the pattern does not contain a globbing character (\fB?\fR,
\fB*\fR, or
\fB[\fR), it is turned into a prefix match by appending
\fB/*\fR\&.
.RE
.PP
\-\-glob=<pattern>
.RS 4
Show all refs matching the shell glob pattern
\fBpattern\fR\&. If the pattern does not start with
\fBrefs/\fR, this is automatically prepended\&. If the pattern does not contain a globbing character (\fB?\fR,
\fB*\fR, or
\fB[\fR), it is turned into a prefix match by appending
\fB/*\fR\&.
.RE
.PP
\-\-exclude=<glob\-pattern>
.RS 4
Do not include refs matching
\fI<glob\-pattern>\fR
that the next
\fB\-\-all\fR,
\fB\-\-branches\fR,
\fB\-\-tags\fR,
\fB\-\-remotes\fR, or
\fB\-\-glob\fR
would otherwise consider\&. Repetitions of this option accumulate exclusion patterns up to the next
\fB\-\-all\fR,
\fB\-\-branches\fR,
\fB\-\-tags\fR,
\fB\-\-remotes\fR, or
\fB\-\-glob\fR
option (other options or arguments do not clear accumulated patterns)\&.
.sp
The patterns given should not begin with
\fBrefs/heads\fR,
\fBrefs/tags\fR, or
\fBrefs/remotes\fR
when applied to
\fB\-\-branches\fR,
\fB\-\-tags\fR, or
\fB\-\-remotes\fR, respectively, and they must begin with
\fBrefs/\fR
when applied to
\fB\-\-glob\fR
or
\fB\-\-all\fR\&. If a trailing
\fI/*\fR
is intended, it must be given explicitly\&.
.RE
.PP
\-\-exclude\-hidden=(fetch|receive|uploadpack)
.RS 4
Do not include refs that would be hidden by
\fBgit\-fetch\fR,
\fBgit\-receive\-pack\fR
or
\fBgit\-upload\-pack\fR
by consulting the appropriate
\fBfetch\&.hideRefs\fR,
\fBreceive\&.hideRefs\fR
or
\fBuploadpack\&.hideRefs\fR
configuration along with
\fBtransfer\&.hideRefs\fR
(see
\fBgit-config\fR(1))\&. This option affects the next pseudo\-ref option
\fB\-\-all\fR
or
\fB\-\-glob\fR
and is cleared after processing them\&.
.RE
.PP
\-\-disambiguate=<prefix>
.RS 4
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\&.
.RE
.SS "Options for Files"
.PP
\-\-local\-env\-vars
.RS 4
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\&.
.RE
.PP
\-\-path\-format=(absolute|relative)
.RS 4
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\&.
.sp
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\&.
.RE
.sp
The following options are modified by \fB\-\-path\-format\fR:
.PP
\-\-git\-dir
.RS 4
Show
\fB$GIT_DIR\fR
if defined\&. Otherwise show the path to the \&.git directory\&. The path shown, when relative, is relative to the current working directory\&.
.sp
If
\fB$GIT_DIR\fR
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\&.
.RE
.PP
\-\-git\-common\-dir
.RS 4
Show
\fB$GIT_COMMON_DIR\fR
if defined, else
\fB$GIT_DIR\fR\&.
.RE
.PP
\-\-resolve\-git\-dir <path>
.RS 4
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\&.
.RE
.PP
\-\-git\-path <path>
.RS 4
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\&.
.RE
.PP
\-\-show\-toplevel
.RS 4
Show the (by default, absolute) path of the top\-level directory of the working tree\&. If there is no working tree, report an error\&.
.RE
.PP
\-\-show\-superproject\-working\-tree
.RS 4
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\&.
.RE
.PP
\-\-shared\-index\-path
.RS 4
Show the path to the shared index file in split index mode, or empty if not in split\-index mode\&.
.RE
.sp
The following options are unaffected by \fB\-\-path\-format\fR:
.PP
\-\-absolute\-git\-dir
.RS 4
Like
\fB\-\-git\-dir\fR, but its output is always the canonicalized absolute path\&.
.RE
.PP
\-\-is\-inside\-git\-dir
.RS 4
When the current working directory is below the repository directory print "true", otherwise "false"\&.
.RE
.PP
\-\-is\-inside\-work\-tree
.RS 4
When the current working directory is inside the work tree of the repository print "true", otherwise "false"\&.
.RE
.PP
\-\-is\-bare\-repository
.RS 4
When the repository is bare print "true", otherwise "false"\&.
.RE
.PP
\-\-is\-shallow\-repository
.RS 4
When the repository is shallow print "true", otherwise "false"\&.
.RE
.PP
\-\-show\-cdup
.RS 4
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)\&.
.RE
.PP
\-\-show\-prefix
.RS 4
When the command is invoked from a subdirectory, show the path of the current directory relative to the top\-level directory\&.
.RE
.PP
\-\-show\-object\-format[=(storage|input|output)]
.RS 4
Show the object format (hash algorithm) used for the repository for storage inside the
\fB\&.git\fR
directory, input, or output\&. For input, multiple algorithms may be printed, space\-separated\&. If not specified, the default is "storage"\&.
.RE
.PP
\-\-show\-ref\-format
.RS 4
Show the reference storage format used for the repository\&.
.RE
.SS "Other Options"
.PP
\-\-since=<datestring>, \-\-after=<datestring>
.RS 4
Parse the date string, and output the corresponding \-\-max\-age= parameter for
\fIgit rev\-list\fR\&.
.RE
.PP
\-\-until=<datestring>, \-\-before=<datestring>
.RS 4
Parse the date string, and output the corresponding \-\-min\-age= parameter for
\fIgit rev\-list\fR\&.
.RE
.PP
<arg>\&...
.RS 4
Flags and parameters to be parsed\&.
.RE
.SH "SPECIFYING REVISIONS"
.sp
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\&.
.if n \{\
.sp
.\}
.RS 4
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBNote\fR
.ps -1
.br
.sp
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\&.
.sp .5v
.RE
.PP
\fI<sha1>\fR, e\&.g\&. \fIdae86e1950b1277e545cee180551750029cfe735\fR, \fIdae86e\fR
.RS 4
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\&.
.RE
.PP
\fI<describeOutput>\fR, e\&.g\&. \fIv1\&.7\&.4\&.2\-679\-g3bee7fb\fR
.RS 4
Output from
\fBgit describe\fR; i\&.e\&. a closest tag, optionally followed by a dash and a number of commits, followed by a dash, a
\fIg\fR, and an abbreviated object name\&.
.RE
.PP
\fI<refname>\fR, e\&.g\&. \fImaster\fR, \fIheads/master\fR, \fIrefs/heads/master\fR
.RS 4
A symbolic ref name\&. E\&.g\&.
\fImaster\fR
typically means the commit object referenced by
\fIrefs/heads/master\fR\&. If you happen to have both
\fIheads/master\fR
and
\fItags/master\fR, you can explicitly say
\fIheads/master\fR
to tell Git which one you mean\&. When ambiguous, a
\fI<refname>\fR
is disambiguated by taking the first match in the following rules:
.sp
.RS 4
.ie n \{\
\h'-04' 1.\h'+01'\c
.\}
.el \{\
.sp -1
.IP "  1." 4.2
.\}
If
\fI$GIT_DIR/<refname>\fR
exists, that is what you mean (this is usually useful only for
\fBHEAD\fR,
\fBFETCH_HEAD\fR,
\fBORIG_HEAD\fR,
\fBMERGE_HEAD\fR,
\fBREBASE_HEAD\fR,
\fBREVERT_HEAD\fR,
\fBCHERRY_PICK_HEAD\fR,
\fBBISECT_HEAD\fR
and
\fBAUTO_MERGE\fR);
.RE
.sp
.RS 4
.ie n \{\
\h'-04' 2.\h'+01'\c
.\}
.el \{\
.sp -1
.IP "  2." 4.2
.\}
otherwise,
\fIrefs/<refname>\fR
if it exists;
.RE
.sp
.RS 4
.ie n \{\
\h'-04' 3.\h'+01'\c
.\}
.el \{\
.sp -1
.IP "  3." 4.2
.\}
otherwise,
\fIrefs/tags/<refname>\fR
if it exists;
.RE
.sp
.RS 4
.ie n \{\
\h'-04' 4.\h'+01'\c
.\}
.el \{\
.sp -1
.IP "  4." 4.2
.\}
otherwise,
\fIrefs/heads/<refname>\fR
if it exists;
.RE
.sp
.RS 4
.ie n \{\
\h'-04' 5.\h'+01'\c
.\}
.el \{\
.sp -1
.IP "  5." 4.2
.\}
otherwise,
\fIrefs/remotes/<refname>\fR
if it exists;
.RE
.sp
.RS 4
.ie n \{\
\h'-04' 6.\h'+01'\c
.\}
.el \{\
.sp -1
.IP "  6." 4.2
.\}
otherwise,
\fIrefs/remotes/<refname>/HEAD\fR
if it exists\&.
.RE
.PP
\fBHEAD\fR
.RS 4
names the commit on which you based the changes in the working tree\&.
.RE
.PP
\fBFETCH_HEAD\fR
.RS 4
records the branch which you fetched from a remote repository with your last
\fBgit fetch\fR
invocation\&.
.RE
.PP
\fBORIG_HEAD\fR
.RS 4
is created by commands that move your
\fBHEAD\fR
in a drastic way (\fBgit am\fR,
\fBgit merge\fR,
\fBgit rebase\fR,
\fBgit reset\fR), to record the position of the
\fBHEAD\fR
before their operation, so that you can easily change the tip of the branch back to the state before you ran them\&.
.RE
.PP
\fBMERGE_HEAD\fR
.RS 4
records the commit(s) which you are merging into your branch when you run
\fBgit merge\fR\&.
.RE
.PP
\fBREBASE_HEAD\fR
.RS 4
during a rebase, records the commit at which the operation is currently stopped, either because of conflicts or an
\fBedit\fR
command in an interactive rebase\&.
.RE
.PP
\fBREVERT_HEAD\fR
.RS 4
records the commit which you are reverting when you run
\fBgit revert\fR\&.
.RE
.PP
\fBCHERRY_PICK_HEAD\fR
.RS 4
records the commit which you are cherry\-picking when you run
\fBgit cherry\-pick\fR\&.
.RE
.PP
\fBBISECT_HEAD\fR
.RS 4
records the current commit to be tested when you run
\fBgit bisect \-\-no\-checkout\fR\&.
.RE
.PP
\fBAUTO_MERGE\fR
.RS 4
records a tree object corresponding to the state the
\fIort\fR
merge strategy wrote to the working tree when a merge operation resulted in conflicts\&.
.RE
.sp
Note that any of the
\fIrefs/*\fR
cases above may come either from the
\fB$GIT_DIR/refs\fR
directory or from the
\fB$GIT_DIR/packed\-refs\fR
file\&. While the ref name encoding is unspecified, UTF\-8 is preferred as some output processing may assume ref names in UTF\-8\&.
.RE
.PP
\fI@\fR
.RS 4
\fI@\fR
alone is a shortcut for
\fBHEAD\fR\&.
.RE
.PP
\fI[<refname>]@{<date>}\fR, e\&.g\&. \fImaster@{yesterday}\fR, \fIHEAD@{5 minutes ago}\fR
.RS 4
A ref followed by the suffix
\fI@\fR
with a date specification enclosed in a brace pair (e\&.g\&.
\fI{yesterday}\fR,
\fI{1 month 2 weeks 3 days 1 hour 1 second ago}\fR
or
\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
\fBlocal\fR
ref at a given time; e\&.g\&., what was in your local
\fImaster\fR
branch last week\&. If you want to look at commits made during certain times, see
\fB\-\-since\fR
and
\fB\-\-until\fR\&.
.RE
.PP
\fI<refname>@{<n>}\fR, e\&.g\&. \fImaster@{1}\fR
.RS 4
A ref followed by the suffix
\fI@\fR
with an ordinal specification enclosed in a brace pair (e\&.g\&.
\fI{1}\fR,
\fI{15}\fR) specifies the n\-th prior value of that ref\&. For example
\fImaster@{1}\fR
is the immediate prior value of
\fImaster\fR
while
\fImaster@{5}\fR
is the 5th prior value of
\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)\&.
.RE
.PP
\fI@{<n>}\fR, e\&.g\&. \fI@{1}\fR
.RS 4
You can use the
\fI@\fR
construct with an empty ref part to get at a reflog entry of the current branch\&. For example, if you are on branch
\fIblabla\fR
then
\fI@{1}\fR
means the same as
\fIblabla@{1}\fR\&.
.RE
.PP
\fI@{\-<n>}\fR, e\&.g\&. \fI@{\-1}\fR
.RS 4
The construct
\fI@{\-<n>}\fR
means the <n>th branch/commit checked out before the current one\&.
.RE
.PP
\fI[<branchname>]@{upstream}\fR, e\&.g\&. \fImaster@{upstream}\fR, \fI@{u}\fR
.RS 4
A branch B may be set up to build on top of a branch X (configured with
\fBbranch\&.<name>\&.merge\fR) at a remote R (configured with the branch X taken from remote R, typically found at
\fBrefs/remotes/R/X\fR\&.
.RE
.PP
\fI[<branchname>]@{push}\fR, e\&.g\&. \fImaster@{push}\fR, \fI@{push}\fR
.RS 4
The suffix
\fI@{push}\fR
reports the branch "where we would push to" if
\fBgit push\fR
were run while
\fBbranchname\fR
was checked out (or the current
\fBHEAD\fR
if no branchname is specified)\&. Like for
\fI@{upstream}\fR, we report the remote\-tracking branch that corresponds to that branch at the remote\&.
.sp
Here\(cqs an example to make it more clear:
.sp
.if n \{\
.RS 4
.\}
.nf
$ git config push\&.default current
$ git config remote\&.pushdefault myfork
$ git switch \-c mybranch origin/master

$ git rev\-parse \-\-symbolic\-full\-name @{upstream}
refs/remotes/origin/master

$ git rev\-parse \-\-symbolic\-full\-name @{push}
refs/remotes/myfork/mybranch
.fi
.if n \{\
.RE
.\}
.sp
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,
\fI@{push}\fR
is the same as
\fI@{upstream}\fR, and there is no need for it\&.
.sp
This suffix is also accepted when spelled in uppercase, and means the same thing no matter the case\&.
.RE
.PP
\fI<rev>^[<n>]\fR, e\&.g\&. \fIHEAD^, v1\&.5\&.1^0\fR
.RS 4
A suffix
\fI^\fR
to a revision parameter means the first parent of that commit object\&.
\fI^<n>\fR
means the <n>th parent (i\&.e\&.
\fI<rev>^\fR
is equivalent to
\fI<rev>^1\fR)\&. As a special rule,
\fI<rev>^0\fR
means the commit itself and is used when
\fI<rev>\fR
is the object name of a tag object that refers to a commit object\&.
.RE
.PP
\fI<rev>~[<n>]\fR, e\&.g\&. \fIHEAD~, master~3\fR
.RS 4
A suffix
\fI~\fR
to a revision parameter means the first parent of that commit object\&. A suffix
\fI~<n>\fR
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\&.
\fI<rev>~3\fR
is equivalent to
\fI<rev>^^^\fR
which is equivalent to
\fI<rev>^1^1^1\fR\&. See below for an illustration of the usage of this form\&.
.RE
.PP
\fI<rev>^{<type>}\fR, e\&.g\&. \fIv0\&.99\&.8^{commit}\fR
.RS 4
A suffix
\fI^\fR
followed by an object type name enclosed in brace pair means dereference the object at
\fI<rev>\fR
recursively until an object of type
\fI<type>\fR
is found or the object cannot be dereferenced anymore (in which case, barf)\&. For example, if
\fI<rev>\fR
is a commit\-ish,
\fI<rev>^{commit}\fR
describes the corresponding commit object\&. Similarly, if
\fI<rev>\fR
is a tree\-ish,
\fI<rev>^{tree}\fR
describes the corresponding tree object\&.
\fI<rev>^0\fR
is a short\-hand for
\fI<rev>^{commit}\fR\&.
.sp
\fI<rev>^{object}\fR
can be used to make sure
\fI<rev>\fR
names an object that exists, without requiring
\fI<rev>\fR
to be a tag, and without dereferencing
\fI<rev>\fR; because a tag is already an object, it does not have to be dereferenced even once to get to an object\&.
.sp
\fI<rev>^{tag}\fR
can be used to ensure that
\fI<rev>\fR
identifies an existing tag object\&.
.RE
.PP
\fI<rev>^{}\fR, e\&.g\&. \fIv0\&.99\&.8^{}\fR
.RS 4
A suffix
\fI^\fR
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\&.
.RE
.PP
\fI<rev>^{/<text>}\fR, e\&.g\&. \fIHEAD^{/fix nasty bug}\fR
.RS 4
A suffix
\fI^\fR
to a revision parameter, followed by a brace pair that contains a text led by a slash, is the same as the
\fI:/fix nasty bug\fR
syntax below except that it returns the youngest matching commit which is reachable from the
\fI<rev>\fR
before
\fI^\fR\&.
.RE
.PP
\fI:/<text>\fR, e\&.g\&. \fI:/fix nasty bug\fR
.RS 4
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\&.
\fI:/^foo\fR\&. The special sequence
\fI:/!\fR
is reserved for modifiers to what is matched\&.
\fI:/!\-foo\fR
performs a negative match, while
\fI:/!!foo\fR
matches a literal
\fI!\fR
character, followed by
\fIfoo\fR\&. Any other sequence beginning with
\fI:/!\fR
is reserved for now\&. Depending on the given text, the shell\(cqs word splitting rules might require additional quoting\&.
.RE
.PP
\fI<rev>:<path>\fR, e\&.g\&. \fIHEAD:README\fR, \fImaster:\&./README\fR
.RS 4
A suffix
\fI:\fR
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
\fI\&./\fR
or
\fI\&.\&./\fR
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\&.
.RE
.PP
\fI:[<n>:]<path>\fR, e\&.g\&. \fI:0:README\fR, \fI:README\fR
.RS 4
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\&.
.RE
.sp
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\&.
.sp
.if n \{\
.RS 4
.\}
.nf
G   H   I   J
 \e /     \e /
  D   E   F
   \e  |  / \e
    \e | /   |
     \e|/    |
      B     C
       \e   /
        \e /
         A
.fi
.if n \{\
.RE
.\}
.sp
.if n \{\
.RS 4
.\}
.nf
A =      = A^0
B = A^   = A^1     = A~1
C =      = A^2
D = A^^  = A^1^1   = A~2
E = B^2  = A^^2
F = B^3  = A^^3
G = A^^^ = A^1^1^1 = A~3
H = D^2  = B^^2    = A^^^2  = A~2^2
I = F^   = B^3^    = A^^3^
J = F^2  = B^3^2   = A^^3^2
.fi
.if n \{\
.RE
.\}
.SH "SPECIFYING RANGES"
.sp
History traversing commands such as \fBgit log\fR operate on a set of commits, not just a single commit\&.
.sp
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\&.
.sp
Specifying several revisions means the set of commits reachable from any of the given commits\&.
.sp
A commit\(cqs reachable set is the commit itself and the commits in its ancestry chain\&.
.sp
There are several notations to specify a set of connected commits (called a "revision range"), illustrated below\&.
.SS "Commit Exclusions"
.PP
\fI^<rev>\fR (caret) Notation
.RS 4
To exclude commits reachable from a commit, a prefix
\fI^\fR
notation is used\&. E\&.g\&.
\fI^r1 r2\fR
means commits reachable from
\fIr2\fR
but exclude the ones reachable from
\fIr1\fR
(i\&.e\&.
\fIr1\fR
and its ancestors)\&.
.RE
.SS "Dotted Range Notations"
.PP
The \fI\&.\&.\fR (two\-dot) Range Notation
.RS 4
The
\fI^r1 r2\fR
set operation appears so often that there is a shorthand for it\&. When you have two commits
\fIr1\fR
and
\fIr2\fR
(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
\fI^r1 r2\fR
and it can be written as
\fIr1\&.\&.r2\fR\&.
.RE
.PP
The \fI\&.\&.\&.\fR (three\-dot) Symmetric Difference Notation
.RS 4
A similar notation
\fIr1\&.\&.\&.r2\fR
is called symmetric difference of
\fIr1\fR
and
\fIr2\fR
and is defined as
\fIr1 r2 \-\-not $(git merge\-base \-\-all r1 r2)\fR\&. It is the set of commits that are reachable from either one of
\fIr1\fR
(left side) or
\fIr2\fR
(right side) but not from both\&.
.RE
.sp
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\&.
.sp
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\&.
.sp
.if n \{\
.RS 4
.\}
.nf
$ git log A\&.\&.B C\&.\&.D
.fi
.if n \{\
.RE
.\}
.sp
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:
.sp
.if n \{\
.RS 4
.\}
.nf
\-\-\-A\-\-\-B\-\-\-o\-\-\-o\-\-\-C\-\-\-D
.fi
.if n \{\
.RE
.\}
.sp
because A and B are reachable from C, the revision range specified by these two dotted ranges is a single commit D\&.
.SS "Other <rev>^ Parent Shorthand Notations"
.sp
Three other shorthands exist, particularly useful for merge commits, for naming a set that is formed by a commit and its parent commits\&.
.sp
The \fIr1^@\fR notation means all parents of \fIr1\fR\&.
.sp
The \fIr1^!\fR notation includes commit \fIr1\fR but excludes all of its parents\&. By itself, this notation denotes the single commit \fIr1\fR\&.
.sp
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)\&.
.sp
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\&.
.SH "REVISION RANGE SUMMARY"
.PP
\fI<rev>\fR
.RS 4
Include commits that are reachable from <rev> (i\&.e\&. <rev> and its ancestors)\&.
.RE
.PP
\fI^<rev>\fR
.RS 4
Exclude commits that are reachable from <rev> (i\&.e\&. <rev> and its ancestors)\&.
.RE
.PP
\fI<rev1>\&.\&.<rev2>\fR
.RS 4
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
\fBHEAD\fR\&.
.RE
.PP
\fI<rev1>\&.\&.\&.<rev2>\fR
.RS 4
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
\fBHEAD\fR\&.
.RE
.PP
\fI<rev>^@\fR, e\&.g\&. \fIHEAD^@\fR
.RS 4
A suffix
\fI^\fR
followed by an at sign is the same as listing all parents of
\fI<rev>\fR
(meaning, include anything reachable from its parents, but not the commit itself)\&.
.RE
.PP
\fI<rev>^!\fR, e\&.g\&. \fIHEAD^!\fR
.RS 4
A suffix
\fI^\fR
followed by an exclamation mark is the same as giving commit
\fI<rev>\fR
and all its parents prefixed with
\fI^\fR
to exclude them (and their ancestors)\&.
.RE
.PP
\fI<rev>^\-<n>\fR, e\&.g\&. \fIHEAD^\-, HEAD^\-2\fR
.RS 4
Equivalent to
\fI<rev>^<n>\&.\&.<rev>\fR, with
\fI<n>\fR
= 1 if not given\&.
.RE
.sp
Here are a handful of examples using the Loeliger illustration above, with each step in the notation\(cqs expansion and selection carefully spelt out:
.sp
.if n \{\
.RS 4
.\}
.nf
   Args   Expanded arguments    Selected commits
   D                            G H D
   D F                          G H I J D F
   ^G D                         H D
   ^D B                         E I J F B
   ^D B C                       E I J F B C
   C                            I J F C
   B\&.\&.C   = ^B C                C
   B\&.\&.\&.C  = B ^F C              G H D E B C
   B^\-    = B^\&.\&.B
          = ^B^1 B              E I J F B
   C^@    = C^1
          = F                   I J F
   B^@    = B^1 B^2 B^3
          = D E F               D G H E F I J
   C^!    = C ^C^@
          = C ^C^1
          = C ^F                C
   B^!    = B ^B^@
          = B ^B^1 ^B^2 ^B^3
          = B ^D ^E ^F          B
   F^! D  = F ^I ^J D           G H D F
.fi
.if n \{\
.RE
.\}
.SH "PARSEOPT"
.sp
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\&.
.sp
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\&.
.sp
Note: Make sure you quote the result when passing it to \fBeval\fR\&. See below for an example\&.
.SS "Input Format"
.sp
\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\&.
.sp
Each line of options has this format:
.sp
.if n \{\
.RS 4
.\}
.nf
<opt\-spec><flags>*<arg\-hint>? SP+ help LF
.fi
.if n \{\
.RE
.\}
.sp

.PP
\fB<opt\-spec>\fR
.RS 4
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
\fB<flags>\fR
characters\&.
\fBh,help\fR,
\fBdry\-run\fR
and
\fBf\fR
are examples of correct
\fB<opt\-spec>\fR\&.
.RE
.PP
\fB<flags>\fR
.RS 4
\fB<flags>\fR
are of
\fB*\fR,
\fB=\fR,
\fB?\fR
or
\fB!\fR\&.
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Use
\fB=\fR
if the option takes an argument\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Use
\fB?\fR
to mean that the option takes an optional argument\&. You probably want to use the
\fB\-\-stuck\-long\fR
mode to be able to unambiguously parse the optional argument\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Use
\fB*\fR
to mean that this option should not be listed in the usage generated for the
\fB\-h\fR
argument\&. It\(cqs shown for
\fB\-\-help\-all\fR
as documented in
\fBgitcli\fR(7)\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Use
\fB!\fR
to not make the corresponding negated long option available\&.
.RE
.RE
.PP
\fB<arg\-hint>\fR
.RS 4
\fB<arg\-hint>\fR, if specified, is used as a name of the argument in the help output, for options that take arguments\&.
\fB<arg\-hint>\fR
is terminated by the first whitespace\&. It is customary to use a dash to separate words in a multi\-word argument hint\&.
.RE
.sp
The remainder of the line, after stripping the spaces, is used as the help associated with the option\&.
.sp
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)\&.
.SS "Example"
.sp
.if n \{\
.RS 4
.\}
.nf
OPTS_SPEC="\e
some\-command [<options>] <args>\&.\&.\&.

some\-command does foo and bar!
\-\-
h,help!   show the help

foo       some nifty option \-\-foo
bar=      some cool option \-\-bar with an argument
baz=arg   another cool option \-\-baz with a named argument
qux?path  qux may take a path argument but has meaning by itself

  An option group Header
C?        option C with an optional argument"

eval "$(echo "$OPTS_SPEC" | git rev\-parse \-\-parseopt \-\- "$@" || echo exit $?)"
.fi
.if n \{\
.RE
.\}
.sp
.SS "Usage text"
.sp
When \fB"$@"\fR is \fB\-h\fR or \fB\-\-help\fR in the above example, the following usage text would be shown:
.sp
.if n \{\
.RS 4
.\}
.nf
usage: some\-command [<options>] <args>\&.\&.\&.

    some\-command does foo and bar!

    \-h, \-\-help            show the help
    \-\-[no\-]foo            some nifty option \-\-foo
    \-\-[no\-]bar \&.\&.\&.        some cool option \-\-bar with an argument
    \-\-[no\-]baz <arg>      another cool option \-\-baz with a named argument
    \-\-[no\-]qux[=<path>]   qux may take a path argument but has meaning by itself

An option group Header
    \-C[\&.\&.\&.]               option C with an optional argument
.fi
.if n \{\
.RE
.\}
.sp
.SH "SQ\-QUOTE"
.sp
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\&.
.sp
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\&.
.SS "Example"
.sp
.if n \{\
.RS 4
.\}
.nf
$ cat >your\-git\-script\&.sh <<\eEOF
#!/bin/sh
args=$(git rev\-parse \-\-sq\-quote "$@")   # quote user\-supplied arguments
command="git frotz \-n24 $args"          # and use it inside a handcrafted
                                        # command line
eval "$command"
EOF

$ sh your\-git\-script\&.sh "a b\*(Aqc"
.fi
.if n \{\
.RE
.\}
.sp
.SH "EXAMPLES"
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Print the object name of the current commit:
.sp
.if n \{\
.RS 4
.\}
.nf
$ git rev\-parse \-\-verify HEAD
.fi
.if n \{\
.RE
.\}
.sp
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Print the commit object name from the revision in the $REV shell variable:
.sp
.if n \{\
.RS 4
.\}
.nf
$ git rev\-parse \-\-verify \-\-end\-of\-options $REV^{commit}
.fi
.if n \{\
.RE
.\}
.sp
This will error out if $REV is empty or not a valid revision\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Similar to above:
.sp
.if n \{\
.RS 4
.\}
.nf
$ git rev\-parse \-\-default master \-\-verify \-\-end\-of\-options $REV
.fi
.if n \{\
.RE
.\}
.sp
but if $REV is empty, the commit object name from master will be printed\&.
.RE
.SH "GIT"
.sp
Part of the \fBgit\fR(1) suite