We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 785ee49 commit 9c81990Copy full SHA for 9c81990
1 file changed
Documentation/gitcli.txt
@@ -62,6 +62,14 @@ scripting git:
62
`git log -1 HEAD` but write `git log -1 HEAD --`; the former will not work
63
if you happen to have a file called `HEAD` in the work tree.
64
65
+ * many commands allow a long option "--option" to be abbreviated
66
+ only to their unique prefix (e.g. if there is no other option
67
+ whose name begins with "opt", you may be able to spell "--opt" to
68
+ invoke the "--option" flag), but you should fully spell them out
69
+ when writing your scripts; later versions of Git may introduce a
70
+ new option whose name shares the same prefix, e.g. "--optimize",
71
+ to make a short prefix that used to be unique no longer unique.
72
+
73
74
ENHANCED OPTION PARSER
75
----------------------
0 commit comments