Documentation: turn middle-of-line tabs into spaces
These tabs happen to appear in columns where they don't stand out too much, so the diff here is non-obvious. Some of these are rendered differently by AsciiDoc and Asciidoctor (although the difference might be invisible!), which is how I found a few of them. The remainder were found using `git grep "[a-zA-Z.,)]$TAB[a-zA-Z]"`. Signed-off-by: Martin Ågren <martin.agren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Martin Ågren committed
Mar 6, 2019 at 07:30 UTC
8d75a1d183e2cbb4c56c14e59aeda64a87d86a34
12 files changed
+12
-12
Documentation/config/diff.txt
+1
-1
@@ -73,7 +73,7 @@ diff.external::
73
environment variable. The command is called with parameters
74
as described under "git Diffs" in linkgit:git[1]. Note: if
75
you want to use an external diff program only on a subset of
76
- your files, you might want to use linkgit:gitattributes[5] instead.
76
+ your files, you might want to use linkgit:gitattributes[5] instead.
77
78
diff.ignoreSubmodules::
79
Sets the default value of --ignore-submodules. Note that this
Documentation/config/gc.txt
+1
-1
@@ -19,7 +19,7 @@ gc.autoPackLimit::
19
When there are more than this many packs that are not
20
marked with `*.keep` file in the repository, `git gc
21
--auto` consolidates them into one larger pack. The
22
- default value is 50. Setting this to 0 disables it.
22
+ default value is 50. Setting this to 0 disables it.
23
24
gc.autoDetach::
25
Make `git gc --auto` return immediately and run in background
Documentation/config/gpg.txt
+1
-1
@@ -16,5 +16,5 @@ gpg.format::
16
gpg.<format>.program::
17
Use this to customize the program used for the signing format you
18
chose. (see `gpg.program` and `gpg.format`) `gpg.program` can still
19
- be used as a legacy synonym for `gpg.openpgp.program`. The default
19
+ be used as a legacy synonym for `gpg.openpgp.program`. The default
20
value for `gpg.x509.program` is "gpgsm".
Documentation/git-config.txt
+1
-1
@@ -126,7 +126,7 @@ See also <<FILES>>.
126
127
--local::
128
For writing options: write to the repository `.git/config` file.
129
- This is the default behavior.
129
+ This is the default behavior.
130
+
131
For reading options: read only from the repository `.git/config` rather than
132
from all available files.
Documentation/git-grep.txt
+1
-1
@@ -88,7 +88,7 @@ OPTIONS
88
mechanism. Only useful with `--untracked`.
89
90
--exclude-standard::
91
- Do not pay attention to ignored files specified via the `.gitignore`
91
+ Do not pay attention to ignored files specified via the `.gitignore`
92
mechanism. Only useful when searching files in the current directory
93
with `--no-index`.
94
Documentation/git-http-backend.txt
+1
-1
@@ -162,7 +162,7 @@ ScriptAliasMatch ^/git/[^/]*(.*) /usr/libexec/git-core/git-http-backend/storage.
162
163
Accelerated static Apache 2.x::
164
Similar to the above, but Apache can be used to return static
165
- files that are stored on disk. On many systems this may
165
+ files that are stored on disk. On many systems this may
166
be more efficient as Apache can ask the kernel to copy the
167
file contents from the file system directly to the network:
168
+
Documentation/git-ls-remote.txt
+1
-1
@@ -31,7 +31,7 @@ OPTIONS
31
displayed.
32
33
--refs::
34
- Do not show peeled tags or pseudorefs like HEAD in the output.
34
+ Do not show peeled tags or pseudorefs like `HEAD` in the output.
35
36
-q::
37
--quiet::
Documentation/git-notes.txt
+1
-1
@@ -146,7 +146,7 @@ OPTIONS
146
147
-C <object>::
148
--reuse-message=<object>::
149
- Take the given blob object (for example, another note) as the
149
+ Take the given blob object (for example, another note) as the
150
note message. (Use `git notes copy <object>` instead to
151
copy notes between objects.)
152
Documentation/gitattributes.txt
+1
-1
@@ -18,7 +18,7 @@ A `gitattributes` file is a simple text file that gives
18
19
Each line in `gitattributes` file is of form:
20
21
- pattern attr1 attr2 ...
21
+ pattern attr1 attr2 ...
22
23
That is, a pattern followed by an attributes list,
24
separated by whitespaces. Leading and trailing whitespaces are
Documentation/gitremote-helpers.txt
+1
-1
@@ -468,7 +468,7 @@ set by Git if the remote helper has the 'option' capability.
468
469
'option dry-run' {'true'|'false'}:
470
If true, pretend the operation completed successfully,
471
- but don't actually change any repository data. For most
471
+ but don't actually change any repository data. For most
472
helpers this only applies to the 'push', if supported.
473
474
'option servpath <c-style-quoted-path>'::
Documentation/gitweb.conf.txt
+1
-1
@@ -536,7 +536,7 @@ $omit_owner::
536
537
$per_request_config::
538
If this is set to code reference, it will be run once for each request.
539
- You can set parts of configuration that change per session this way.
539
+ You can set parts of configuration that change per session this way.
540
For example, one might use the following code in a gitweb configuration
541
file
542
+
Documentation/rev-list-options.txt
+1
-1
@@ -743,7 +743,7 @@ explicitly-given commit or tree.
743
744
--filter-print-omitted::
745
Only useful with `--filter=`; prints a list of the objects omitted
746
- by the filter. Object IDs are prefixed with a ``~'' character.
746
+ by the filter. Object IDs are prefixed with a ``~'' character.
747
748
--missing=<missing-action>::
749
A debug option to help with future "partial clone" development.