Skip to content

Commit

Permalink
Documentation: avoid xmlto input error
Browse files Browse the repository at this point in the history
Do not write literal "~/" or "~user" but use "{tilde}/" and "{tilde}user";
otherwise the text between them gets enclosed in
"<subscript>...</subscript>".

Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Junio C Hamano committed Nov 21, 2009
1 parent df2a79f commit 0f7fb21
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Documentation/config.txt
Original file line number Diff line number Diff line change
Expand Up @@ -380,8 +380,8 @@ Common unit suffixes of 'k', 'm', or 'g' are supported.
core.excludesfile::
In addition to '.gitignore' (per-directory) and
'.git/info/exclude', git looks into this file for patterns
of files which are not meant to be tracked. "~/" is expanded
to the value of `$HOME` and "~user/" to the specified user's
of files which are not meant to be tracked. "{tilde}/" is expanded
to the value of `$HOME` and "{tilde}user/" to the specified user's
home directory. See linkgit:gitignore[5].

core.editor::
Expand Down Expand Up @@ -667,7 +667,7 @@ color.ui::

commit.template::
Specify a file to use as the template for new commit messages.
"~/" is expanded to the value of `$HOME` and "~user/" to the
"{tilde}/" is expanded to the value of `$HOME` and "{tilde}user/" to the
specified user's home directory.

diff.autorefreshindex::
Expand Down

0 comments on commit 0f7fb21

Please sign in to comment.