File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,14 @@ scripting git:
6262 `git log -1 HEAD` but write `git log -1 HEAD --`; the former will not work
6363 if you happen to have a file called `HEAD` in the work tree.
6464
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+
6573
6674ENHANCED OPTION PARSER
6775----------------------
You can’t perform that action at this time.
0 commit comments