Skip to content
This repository was archived by the owner on Nov 9, 2017. It is now read-only.

Commit c8394bb

Browse files
committed
Merge branch 'jj/doc-markup-gitcli' into maint
* jj/doc-markup-gitcli: Documentation/gitcli.txt: fix double quotes
2 parents 5712dcb + 0b7e4e0 commit c8394bb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Documentation/gitcli.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,12 @@ scripting Git:
8383
`git log -1 HEAD` but write `git log -1 HEAD --`; the former will not work
8484
if you happen to have a file called `HEAD` in the work tree.
8585

86-
* many commands allow a long option "--option" to be abbreviated
86+
* many commands allow a long option `--option` to be abbreviated
8787
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
9090
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`,
9292
to make a short prefix that used to be unique no longer unique.
9393

9494

@@ -149,7 +149,7 @@ prefix of a long option as if it is fully spelled out, but use this
149149
with a caution. For example, `git commit --amen` behaves as if you
150150
typed `git commit --amend`, but that is true only until a later version
151151
of Git introduces another option that shares the same prefix,
152-
e.g `git commit --amenity" option.
152+
e.g. `git commit --amenity` option.
153153

154154

155155
Separating argument from the option

0 commit comments

Comments
 (0)