@@ -83,12 +83,12 @@ scripting Git:
83
83
`git log -1 HEAD` but write `git log -1 HEAD --`; the former will not work
84
84
if you happen to have a file called `HEAD` in the work tree.
85
85
86
- * many commands allow a long option " --option" to be abbreviated
86
+ * many commands allow a long option ` --option` to be abbreviated
87
87
only to their unique prefix (e.g. if there is no other option
88
- whose name begins with " opt" , you may be able to spell " --opt" to
89
- invoke the " --option" flag), but you should fully spell them out
88
+ whose name begins with ` opt` , you may be able to spell ` --opt` to
89
+ invoke the ` --option` flag), but you should fully spell them out
90
90
when writing your scripts; later versions of Git may introduce a
91
- new option whose name shares the same prefix, e.g. " --optimize" ,
91
+ new option whose name shares the same prefix, e.g. ` --optimize` ,
92
92
to make a short prefix that used to be unique no longer unique.
93
93
94
94
@@ -149,7 +149,7 @@ prefix of a long option as if it is fully spelled out, but use this
149
149
with a caution. For example, `git commit --amen` behaves as if you
150
150
typed `git commit --amend`, but that is true only until a later version
151
151
of Git introduces another option that shares the same prefix,
152
- e.g `git commit --amenity" option.
152
+ e.g. `git commit --amenity` option.
153
153
154
154
155
155
Separating argument from the option
0 commit comments