File tree Expand file tree Collapse file tree 6 files changed +12
-12
lines changed Expand file tree Collapse file tree 6 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ There are two ways to specify which commits to operate on.
47
47
48
48
The first rule takes precedence in the case of a single <commit>. To
49
49
apply the second rule, i.e., format everything since the beginning of
50
- history up until <commit>, use the '\ --root' option: `git format-patch
50
+ history up until <commit>, use the ` --root` option: `git format-patch
51
51
--root <commit>`. If you want to format only <commit> itself, you
52
52
can do this with `git format-patch -1 <commit>`.
53
53
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ git-log - Show commit logs
9
9
SYNOPSIS
10
10
--------
11
11
[verse]
12
- 'git log' [<options>] [<revision range>] [[\ --] <path>...]
12
+ 'git log' [<options>] [<revision range>] [[--] <path>...]
13
13
14
14
DESCRIPTION
15
15
-----------
@@ -90,13 +90,13 @@ include::line-range-format.txt[]
90
90
ways to spell <revision range>, see the 'Specifying Ranges'
91
91
section of linkgit:gitrevisions[7].
92
92
93
- [\ --] <path>...::
93
+ [--] <path>...::
94
94
Show only commits that are enough to explain how the files
95
95
that match the specified paths came to be. See 'History
96
96
Simplification' below for details and other simplification
97
97
modes.
98
98
+
99
- Paths may need to be prefixed with ``\-- '' to separate them from
99
+ Paths may need to be prefixed with `--` to separate them from
100
100
options or the revision range, when confusion arises.
101
101
102
102
include::rev-list-options.txt[]
@@ -125,7 +125,7 @@ EXAMPLES
125
125
`git log --since="2 weeks ago" -- gitk`::
126
126
127
127
Show the changes during the last two weeks to the file 'gitk'.
128
- The ``--'' is necessary to avoid confusion with the *branch* named
128
+ The `--` is necessary to avoid confusion with the *branch* named
129
129
'gitk'
130
130
131
131
`git log --name-status release..test`::
Original file line number Diff line number Diff line change @@ -300,7 +300,7 @@ origin +master` to force a push to the `master` branch). See the
300
300
These options are passed to linkgit:git-send-pack[1]. A thin transfer
301
301
significantly reduces the amount of sent data when the sender and
302
302
receiver share many of the same objects in common. The default is
303
- \ --thin.
303
+ ` --thin` .
304
304
305
305
-q::
306
306
--quiet::
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ git-shortlog - Summarize 'git log' output
8
8
SYNOPSIS
9
9
--------
10
10
[verse]
11
- 'git shortlog' [<options>] [<revision range>] [[\ --] <path>...]
11
+ 'git shortlog' [<options>] [<revision range>] [[--] <path>...]
12
12
git log --pretty=short | 'git shortlog' [<options>]
13
13
14
14
DESCRIPTION
@@ -69,11 +69,11 @@ them.
69
69
ways to spell <revision range>, see the "Specifying Ranges"
70
70
section of linkgit:gitrevisions[7].
71
71
72
- [\ --] <path>...::
72
+ [--] <path>...::
73
73
Consider only commits that are enough to explain how the files
74
74
that match the specified paths came to be.
75
75
+
76
- Paths may need to be prefixed with "\-- " to separate them from
76
+ Paths may need to be prefixed with `--` to separate them from
77
77
options or the revision range, when confusion arises.
78
78
79
79
MAPPING AUTHORS
Original file line number Diff line number Diff line change @@ -213,8 +213,8 @@ sync [--recursive] [--] [<path>...]::
213
213
submodule URLs change upstream and you need to update your local
214
214
repositories accordingly.
215
215
+
216
- " git submodule sync" synchronizes all submodules while
217
- " git submodule sync \ -- A" synchronizes submodule "A" only.
216
+ ` git submodule sync` synchronizes all submodules while
217
+ ` git submodule sync -- A` synchronizes submodule "A" only.
218
218
+
219
219
If `--recursive` is specified, this command will recurse into the
220
220
registered submodules, and sync any nested submodules within.
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ gitk - The Git repository browser
8
8
SYNOPSIS
9
9
--------
10
10
[verse]
11
- 'gitk' [<options>] [<revision range>] [\ --] [<path>...]
11
+ 'gitk' [<options>] [<revision range>] [--] [<path>...]
12
12
13
13
DESCRIPTION
14
14
-----------
You can’t perform that action at this time.
0 commit comments