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[]
202202 destination of an explicit refspec; see `--prune`).
203203
204204ifndef::git-pull[]
205- --recurse-submodules[=yes|on-demand|no]::
205+ --recurse-submodules[=( yes|on-demand|no) ]::
206206 This option controls if and under what conditions new commits of
207207 submodules should be fetched too. When recursing through submodules,
208208 `git fetch` always attempts to fetch "changed" submodules, that is, a
Original file line number Diff line number Diff line change 99--------
1010[verse]
1111'git interpret-trailers' [--in-place] [--trim-empty]
12- [(--trailer (<key>|<keyAlias >)[(=|:)<value>])...]
12+ [(--trailer (<key>|<key-alias >)[(=|:)<value>])...]
1313 [--parse] [<file>...]
1414
1515DESCRIPTION
@@ -67,9 +67,9 @@ key: value
6767This means that the trimmed <key> and <value> will be separated by
6868`': '` (one colon followed by one space).
6969
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`
7171shorter 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
7373of the full <key> string, although case sensitivity does not matter. For
7474example, if you have
7575
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ OPTIONS
8787--verbose::
8888 Pass --verbose to git-fetch and git-merge.
8989
90- --[no-]recurse-submodules[=yes|on-demand|no]::
90+ --[no-]recurse-submodules[=( yes|on-demand|no) ]::
9191 This option controls if new commits of populated submodules should
9292 be fetched, and if the working trees of active submodules should be
9393 updated, too (see linkgit:git-fetch[1], linkgit:git-config[1] and
@@ -105,7 +105,7 @@ Options related to merging
105105include::merge-options.txt[]
106106
107107-r::
108- --rebase[=false|true|merges|interactive]::
108+ --rebase[=( false|true|merges|interactive) ]::
109109 When true, rebase the current branch on top of the upstream
110110 branch after fetching. If there is a remote-tracking branch
111111 corresponding to the upstream branch and the upstream branch
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ SYNOPSIS
1212 [--onto <newbase> | --keep-base] [<upstream> [<branch>]]
1313'git rebase' [-i | --interactive] [<options>] [--exec <cmd>] [--onto <newbase>]
1414 --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)
1616
1717DESCRIPTION
1818-----------
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ git-send-email - Send a collection of patches as emails
99SYNOPSIS
1010--------
1111[verse]
12- 'git send-email' [<options>] <file| directory>...
12+ 'git send-email' [<options>] ( <file>|< directory>) ...
1313'git send-email' [<options>] <format-patch-options>
1414'git send-email' --dump-aliases
1515
@@ -278,7 +278,7 @@ must be used for each option.
278278 if a username is not specified (with `--smtp-user` or `sendemail.smtpUser`),
279279 then authentication is not attempted.
280280
281- --smtp-debug=0|1::
281+ --smtp-debug=( 0|1) ::
282282 Enable (1) or disable (0) debug output. If enabled, SMTP
283283 commands and replies will be printed. Useful to debug TLS
284284 connection and authentication problems.
@@ -301,7 +301,9 @@ must be used for each option.
301301Automating
302302~~~~~~~~~~
303303
304- --no-[to|cc|bcc]::
304+ --no-to::
305+ --no-cc::
306+ --no-bcc::
305307 Clears any list of "To:", "Cc:", "Bcc:" addresses previously
306308 set via config.
307309
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.
960960`GIT_PROTOCOL`::
961961 For internal use only. Used in handshaking the wire protocol.
962962 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
964964 ignored.
965965+
966966Note 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.
316316With `--pretty` format other than `oneline` and `reference` (for obvious reasons),
317317this causes the output to have two extra lines of information
318318taken 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),
321321depending on a few rules:
322322+
323323--
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
325325 format.
326326+
3273272. If the starting point was specified as `ref@{now}`, show the
Original file line number Diff line number Diff line change 1515
1616static const char * const git_interpret_trailers_usage [] = {
1717 N_ ("git interpret-trailers [--in-place] [--trim-empty]\n"
18- " [(--trailer (<key>|<keyAlias >)[(=|:)<value>])...]\n"
18+ " [(--trailer (<key>|<key-alias >)[(=|:)<value>])...]\n"
1919 " [--parse] [<file>...]" ),
2020 NULL
2121};
You can’t perform that action at this time.
0 commit comments