File tree Expand file tree Collapse file tree 8 files changed +17
-15
lines changed Expand file tree Collapse file tree 8 files changed +17
-15
lines changed Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ endif::git-pull[]
202
202
destination of an explicit refspec; see `--prune`).
203
203
204
204
ifndef::git-pull[]
205
- --recurse-submodules[=yes|on-demand|no]::
205
+ --recurse-submodules[=( yes|on-demand|no) ]::
206
206
This option controls if and under what conditions new commits of
207
207
submodules should be fetched too. When recursing through submodules,
208
208
`git fetch` always attempts to fetch "changed" submodules, that is, a
Original file line number Diff line number Diff line change 9
9
--------
10
10
[verse]
11
11
'git interpret-trailers' [--in-place] [--trim-empty]
12
- [(--trailer (<key>|<keyAlias >)[(=|:)<value>])...]
12
+ [(--trailer (<key>|<key-alias >)[(=|:)<value>])...]
13
13
[--parse] [<file>...]
14
14
15
15
DESCRIPTION
@@ -67,9 +67,9 @@ key: value
67
67
This means that the trimmed <key> and <value> will be separated by
68
68
`': '` (one colon followed by one space).
69
69
70
- For convenience, a <keyAlias > can be configured to make using `--trailer`
70
+ For convenience, a <key-alias > can be configured to make using `--trailer`
71
71
shorter to type on the command line. This can be configured using the
72
- 'trailer.<keyAlias >.key' configuration variable. The <keyAlias> must be a prefix
72
+ 'trailer.<key-alias >.key' configuration variable. The <keyAlias> must be a prefix
73
73
of the full <key> string, although case sensitivity does not matter. For
74
74
example, if you have
75
75
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ OPTIONS
87
87
--verbose::
88
88
Pass --verbose to git-fetch and git-merge.
89
89
90
- --[no-]recurse-submodules[=yes|on-demand|no]::
90
+ --[no-]recurse-submodules[=( yes|on-demand|no) ]::
91
91
This option controls if new commits of populated submodules should
92
92
be fetched, and if the working trees of active submodules should be
93
93
updated, too (see linkgit:git-fetch[1], linkgit:git-config[1] and
@@ -105,7 +105,7 @@ Options related to merging
105
105
include::merge-options.txt[]
106
106
107
107
-r::
108
- --rebase[=false|true|merges|interactive]::
108
+ --rebase[=( false|true|merges|interactive) ]::
109
109
When true, rebase the current branch on top of the upstream
110
110
branch after fetching. If there is a remote-tracking branch
111
111
corresponding to the upstream branch and the upstream branch
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ SYNOPSIS
12
12
[--onto <newbase> | --keep-base] [<upstream> [<branch>]]
13
13
'git rebase' [-i | --interactive] [<options>] [--exec <cmd>] [--onto <newbase>]
14
14
--root [<branch>]
15
- 'git rebase' (--continue | --skip | --abort | --quit | --edit-todo | --show-current-patch)
15
+ 'git rebase' (--continue| --skip| --abort| --quit| --edit-todo| --show-current-patch)
16
16
17
17
DESCRIPTION
18
18
-----------
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ git-send-email - Send a collection of patches as emails
9
9
SYNOPSIS
10
10
--------
11
11
[verse]
12
- 'git send-email' [<options>] <file| directory>...
12
+ 'git send-email' [<options>] ( <file>|< directory>) ...
13
13
'git send-email' [<options>] <format-patch-options>
14
14
'git send-email' --dump-aliases
15
15
@@ -278,7 +278,7 @@ must be used for each option.
278
278
if a username is not specified (with `--smtp-user` or `sendemail.smtpUser`),
279
279
then authentication is not attempted.
280
280
281
- --smtp-debug=0|1::
281
+ --smtp-debug=( 0|1) ::
282
282
Enable (1) or disable (0) debug output. If enabled, SMTP
283
283
commands and replies will be printed. Useful to debug TLS
284
284
connection and authentication problems.
@@ -301,7 +301,9 @@ must be used for each option.
301
301
Automating
302
302
~~~~~~~~~~
303
303
304
- --no-[to|cc|bcc]::
304
+ --no-to::
305
+ --no-cc::
306
+ --no-bcc::
305
307
Clears any list of "To:", "Cc:", "Bcc:" addresses previously
306
308
set via config.
307
309
Original file line number Diff line number Diff line change @@ -960,7 +960,7 @@ will never be returned from the commit-graph at the cost of performance.
960
960
`GIT_PROTOCOL`::
961
961
For internal use only. Used in handshaking the wire protocol.
962
962
Contains a colon ':' separated list of keys with optional values
963
- 'key[= value]'. Presence of unknown keys and values must be
963
+ '< key>[=< value> ]'. Presence of unknown keys and values must be
964
964
ignored.
965
965
+
966
966
Note that servers may need to be configured to allow this variable to
Original file line number Diff line number Diff line change @@ -316,12 +316,12 @@ list.
316
316
With `--pretty` format other than `oneline` and `reference` (for obvious reasons),
317
317
this causes the output to have two extra lines of information
318
318
taken from the reflog. The reflog designator in the output may be shown
319
- as `ref@{Nth}` (where ` Nth` is the reverse-chronological index in the
320
- reflog) or as `ref@{timestamp}` (with the timestamp for that entry),
319
+ as `ref@{< Nth> }` (where _< Nth>_ is the reverse-chronological index in the
320
+ reflog) or as `ref@{< timestamp> }` (with the _< timestamp>_ for that entry),
321
321
depending on a few rules:
322
322
+
323
323
--
324
- 1. If the starting point is specified as `ref@{Nth}`, show the index
324
+ 1. If the starting point is specified as `ref@{< Nth> }`, show the index
325
325
format.
326
326
+
327
327
2. If the starting point was specified as `ref@{now}`, show the
Original file line number Diff line number Diff line change 15
15
16
16
static const char * const git_interpret_trailers_usage [] = {
17
17
N_ ("git interpret-trailers [--in-place] [--trim-empty]\n"
18
- " [(--trailer (<key>|<keyAlias >)[(=|:)<value>])...]\n"
18
+ " [(--trailer (<key>|<key-alias >)[(=|:)<value>])...]\n"
19
19
" [--parse] [<file>...]" ),
20
20
NULL
21
21
};
You can’t perform that action at this time.
0 commit comments