gitcli: describe abbreviation of long options
authorJunio C Hamano <gitster@pobox.com>
Fri, 17 Aug 2012 06:16:22 +0000 (23:16 -0700)
committerJunio C Hamano <gitster@pobox.com>
Fri, 17 Aug 2012 06:16:28 +0000 (23:16 -0700)
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/gitcli.txt

index ea17f7a53b664d5e9e86ceb814c5cc7430035125..3e72a5d68ea75f4e88ef6ec8cf5bd354f1094a5d 100644 (file)
@@ -62,6 +62,14 @@ scripting git:
    `git log -1 HEAD` but write `git log -1 HEAD --`; the former will not work
    if you happen to have a file called `HEAD` in the work tree.
 
+ * many commands allow a long option "--option" to be abbreviated
+   only to their unique prefix (e.g. if there is no other option
+   whose name begins with "opt", you may be able to spell "--opt" to
+   invoke the "--option" flag), but you should fully spell them out
+   when writing your scripts; later versions of Git may introduce a
+   new option whose name shares the same prefix, e.g. "--optimize",
+   to make a short prefix that used to be unique no longer unique.
+
 
 ENHANCED OPTION PARSER
 ----------------------