Skip to content

Commit 7baf32a

Browse files
committed
Merge branch 'jn/doc-dashdash' into maint
* jn/doc-dashdash: Documentation/i18n: quote double-dash for AsciiDoc Documentation: quote double-dash for AsciiDoc Conflicts: Documentation/git-mergetool--lib.txt
2 parents 3fc44a1 + 27269fc commit 7baf32a

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

Documentation/config.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,7 @@ branch.<name>.rebase::
678678
browser.<tool>.cmd::
679679
Specify the command to invoke the specified browser. The
680680
specified command is evaluated in shell with the URLs passed
681-
as arguments. (See linkgit:git-web--browse[1].)
681+
as arguments. (See linkgit:git-web{litdd}browse[1].)
682682

683683
browser.<tool>.path::
684684
Override the path for the given tool that may be used to

Documentation/git-commit.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ When recording your own work, the contents of modified files in
284284
your working tree are temporarily stored to a staging area
285285
called the "index" with 'git add'. A file can be
286286
reverted back, only in the index but not in the working tree,
287-
to that of the last commit with `git reset HEAD -- <file>`,
287+
to that of the last commit with `git reset HEAD \-- <file>`,
288288
which effectively reverts 'git add' and prevents the changes to
289289
this file from participating in the next commit. After building
290290
the state to be committed incrementally with these commands,

Documentation/git-mergetool--lib.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ git-mergetool--lib - Common git merge tool shell scriptlets
88
SYNOPSIS
99
--------
1010
[verse]
11-
'TOOL_MODE=(diff|merge) . "$(git --exec-path)/git-mergetool--lib"'
11+
'TOOL_MODE=(diff|merge) . "$(git --exec-path)/git-mergetool{litdd}lib"'
1212

1313
DESCRIPTION
1414
-----------

Documentation/git-revert.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ throw away all uncommitted changes in your working directory, you
2424
should see linkgit:git-reset[1], particularly the '--hard' option. If
2525
you want to extract specific files as they were in another commit, you
2626
should see linkgit:git-checkout[1], specifically the `git checkout
27-
<commit> -- <filename>` syntax. Take care with these alternatives as
27+
<commit> \-- <filename>` syntax. Take care with these alternatives as
2828
both will discard uncommitted changes in your working directory.
2929

3030
OPTIONS

Documentation/git-sh-i18n--envsubst.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
git-sh-i18n--envsubst(1)
2-
========================
1+
git-sh-i18n{litdd}envsubst(1)
2+
=============================
33

44
NAME
55
----
@@ -10,8 +10,8 @@ SYNOPSIS
1010
[verse]
1111
eval_gettext () {
1212
printf "%s" "$1" | (
13-
export PATH $('git sh-i18n--envsubst' --variables "$1");
14-
'git sh-i18n--envsubst' "$1"
13+
export PATH $('git sh-i18n{litdd}envsubst' --variables "$1");
14+
'git sh-i18n{litdd}envsubst' "$1"
1515
)
1616
}
1717

@@ -22,7 +22,7 @@ This is not a command the end user would want to run. Ever.
2222
This documentation is meant for people who are studying the
2323
plumbing scripts and/or are writing new ones.
2424

25-
git-sh-i18n--envsubst is Git's stripped-down copy of the GNU
25+
'git sh-i18n{litdd}envsubst' is Git's stripped-down copy of the GNU
2626
`envsubst(1)` program that comes with the GNU gettext package. It's
2727
used internally by linkgit:git-sh-i18n[1] to interpolate the variables
2828
passed to the the `eval_gettext` function.

Documentation/git-sh-i18n.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ gettext::
3535
eval_gettext::
3636
Currently a dummy fall-through function implemented as a wrapper
3737
around `printf(1)` with variables expanded by the
38-
linkgit:git-sh-i18n--envsubst[1] helper. Will be replaced by a
38+
linkgit:git-sh-i18n{litdd}envsubst[1] helper. Will be replaced by a
3939
real gettext implementation in a later version.
4040

4141
GIT

Documentation/git-submodule.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ sync::
176176
repositories accordingly.
177177
+
178178
"git submodule sync" synchronizes all submodules while
179-
"git submodule sync -- A" synchronizes submodule "A" only.
179+
"git submodule sync \-- A" synchronizes submodule "A" only.
180180

181181
OPTIONS
182182
-------

Documentation/git-web--browse.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ browser.<tool>.path
6969
You can explicitly provide a full path to your preferred browser by
7070
setting the configuration variable 'browser.<tool>.path'. For example,
7171
you can configure the absolute path to firefox by setting
72-
'browser.firefox.path'. Otherwise, 'git web--browse' assumes the tool
72+
'browser.firefox.path'. Otherwise, 'git web{litdd}browse' assumes the tool
7373
is available in PATH.
7474

7575
browser.<tool>.cmd

Documentation/rev-list-options.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ that you are filtering for a file `foo` in this commit graph:
313313
\ / / / /
314314
`-------------'
315315
-----------------------------------------------------------------------
316-
The horizontal line of history A--P is taken to be the first parent of
316+
The horizontal line of history A---P is taken to be the first parent of
317317
each merge. The commits are:
318318

319319
* `I` is the initial commit, in which `foo` exists with contents

0 commit comments

Comments
 (0)