Skip to content

Commit e4b9ec2

Browse files
derrickstoleedscho
authored andcommitted
Docs: fix asciidoc failures from short delimiters
Signed-off-by: Derrick Stolee <stolee@gmail.com>
1 parent 80cab8f commit e4b9ec2

File tree

9 files changed

+28
-28
lines changed

9 files changed

+28
-28
lines changed

Documentation/config/protocol.adoc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ protocol.allow::
66
default policy of `never`, and all other protocols (including file)
77
have a default policy of `user`. Supported policies:
88
+
9-
--
9+
----
1010

1111
* `always` - protocol is always able to be used.
1212
@@ -18,15 +18,15 @@ protocol.allow::
1818
execute clone/fetch/push commands without user input, e.g. recursive
1919
submodule initialization.
2020
21-
--
21+
----
2222
2323
protocol.<name>.allow::
2424
Set a policy to be used by protocol `<name>` with clone/fetch/push
2525
commands. See `protocol.allow` above for the available policies.
2626
+
2727
The protocol names currently used by git are:
2828
+
29-
--
29+
----
3030
- `file`: any local file-based path (including `file://` URLs,
3131
or local paths)
3232

@@ -42,7 +42,7 @@ The protocol names currently used by git are:
4242

4343
- any external helpers are named by their protocol (e.g., use
4444
`hg` to allow the `git-remote-hg` helper)
45-
--
45+
----
4646
4747
protocol.version::
4848
If set, clients will attempt to communicate with a server
@@ -51,7 +51,7 @@ protocol.version::
5151
If unset, the default is `2`.
5252
Supported versions:
5353
+
54-
--
54+
----
5555

5656
* `0` - the original wire protocol.
5757

@@ -60,4 +60,4 @@ protocol.version::
6060

6161
* `2` - Wire protocol version 2, see linkgit:gitprotocol-v2[5].
6262

63-
--
63+
----

Documentation/config/push.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ push.default::
1717
(i.e. the fetch source is equal to the push destination),
1818
`upstream` is probably what you want. Possible values are:
1919
+
20-
--
20+
----
2121

2222
* `nothing` - do not push anything (error out) unless a refspec is
2323
given. This is primarily meant for people who want to
@@ -64,7 +64,7 @@ branches outside your control.
6464
This used to be the default, but not since Git 2.0 (`simple` is the
6565
new default).
6666
67-
--
67+
----
6868
6969
push.followTags::
7070
If set to true, enable `--follow-tags` option by default. You

Documentation/config/sendemail.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ the documentation of the email program of the same name. The
5858
differences and limitations from the standard formats are
5959
described below:
6060
+
61-
--
61+
----
6262
sendmail;;
6363
* Quoted aliases and quoted addresses are not supported: lines that
6464
contain a `"` symbol are ignored.
@@ -68,7 +68,7 @@ sendmail;;
6868
* Warnings are printed on the standard error output for any
6969
explicitly unsupported constructs, and any other lines that are not
7070
recognized by the parser.
71-
--
71+
----
7272
sendemail.annotate::
7373
sendemail.bcc::
7474
sendemail.cc::

Documentation/config/sideband.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ sideband.allowControlCharacters::
44
unwanted ANSI escape sequences from being sent to the terminal. Use
55
this config setting to override this behavior:
66
+
7-
--
7+
----
88
color::
99
Allow ANSI color sequences, line feeds and horizontal tabs,
1010
but mask all other control characters. This is the default.
@@ -13,4 +13,4 @@ sideband.allowControlCharacters::
1313
horizontal tabs.
1414
true::
1515
Allow all control characters to be sent to the terminal.
16-
--
16+
----

Documentation/config/ssh.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ overridden via the environment variable `GIT_SSH_VARIANT`.
1919
The current command-line parameters used for each variant are as
2020
follows:
2121
+
22-
--
22+
----
2323

2424
* `ssh` - [-p port] [-4] [-6] [-o option] [username@]host command
2525
@@ -29,7 +29,7 @@ follows:
2929
3030
* `tortoiseplink` - [-P port] [-4] [-6] -batch [username@]host command
3131
32-
--
32+
----
3333
+
3434
Except for the `simple` variant, command-line parameters are likely to
3535
change as git gains new features.

Documentation/config/status.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ status.showUntrackedFiles::
5050
systems. So, this variable controls how the commands display
5151
the untracked files. Possible values are:
5252
+
53-
--
53+
----
5454
* `no` - Show no untracked files.
5555
* `normal` - Show untracked files and directories.
5656
* `all` - Show also individual files in untracked directories.
57-
--
57+
----
5858
+
5959
If this variable is not specified, it defaults to 'normal'.
6060
All usual spellings for Boolean value `true` are taken as `normal`
@@ -90,12 +90,12 @@ status.deserializeWait::
9090
fall-back and compute status normally. This will be overridden by
9191
`--deserialize-wait=<value>` on the command line.
9292
+
93-
--
93+
----
9494
* `fail` - cause git to exit with an error when the status cache file
9595
is stale; this is intended for testing and debugging.
9696
* `block` - cause git to spin and periodically retry the cache file
9797
every 100 ms; this is intended to help coordinate with another git
9898
instance concurrently computing the cache file.
9999
* `no` - to immediately fall-back if cache file is stale. This is the default.
100100
* `<timeout>` - time (in tenths of a second) to spin and retry.
101-
--
101+
----

Documentation/config/survey.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ survey.*::
33
command. The intention is that this command could be run in the
44
background with these options.
55
+
6-
--
6+
----
77
survey.namerev::
88
Boolean to show/hide `git name-rev` information for each
99
reported commit and the containing commit of each
@@ -44,4 +44,4 @@ survey.*::
4444
long file or subdirectory entry names. Provides a
4545
default value for `--tree-sizes=<n>` in
4646
linkgit:git-survey[1].
47-
--
47+
----

Documentation/config/trace2.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ trace2.eventTarget::
1616
This variable controls the event target destination.
1717
It may be overridden by the `GIT_TRACE2_EVENT` environment variable.
1818
The following table shows possible values.
19-
+
19+
2020
include::../trace2-target-values.adoc[]
2121

2222
trace2.normalBrief::
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
--
1+
----
22
* `0` or `false` - Disables the target.
33
* `1` or `true` - Writes to `STDERR`.
44
* `[2-9]` - Writes to the already opened file descriptor.
55
* `<absolute-pathname>` - Writes to the file in append mode. If the target
6-
already exists and is a directory, the traces will be written to files (one
7-
per process) underneath the given directory.
6+
already exists and is a directory, the traces will be written to files (one
7+
per process) underneath the given directory.
88
* `af_unix:[<socket-type>:]<absolute-pathname>` - Write to a
9-
Unix DomainSocket (on platforms that support them). Socket
10-
type can be either `stream` or `dgram`; if omitted Git will
11-
try both.
12-
--
9+
Unix DomainSocket (on platforms that support them). Socket
10+
type can be either `stream` or `dgram`; if omitted Git will
11+
try both.
12+
----

0 commit comments

Comments
 (0)