@@ -481,8 +481,8 @@ Common unit suffixes of 'k', 'm', or 'g' are supported.
481481core.excludesfile::
482482 In addition to '.gitignore' (per-directory) and
483483 '.git/info/exclude', git looks into this file for patterns
484- of files which are not meant to be tracked. "{tilde}/ " is expanded
485- to the value of `$HOME` and "{tilde} user/" to the specified user's
484+ of files which are not meant to be tracked. "`~/` " is expanded
485+ to the value of `$HOME` and "`~ user/` " to the specified user's
486486 home directory. See linkgit:gitignore[5].
487487
488488core.askpass::
@@ -863,7 +863,7 @@ commit.status::
863863
864864commit.template::
865865 Specify a file to use as the template for new commit messages.
866- "{tilde}/ " is expanded to the value of `$HOME` and "{tilde} user/" to the
866+ "`~/` " is expanded to the value of `$HOME` and "`~ user/` " to the
867867 specified user's home directory.
868868
869869credential.helper::
@@ -988,7 +988,7 @@ format.thread::
988988 a boolean value, or `shallow` or `deep`. `shallow` threading
989989 makes every mail a reply to the head of the series,
990990 where the head is chosen from the cover letter, the
991- `\ --in-reply-to`, and the first patch mail, in this order.
991+ `--in-reply-to`, and the first patch mail, in this order.
992992 `deep` threading makes every mail a reply to the previous one.
993993 A true boolean value is the same as `shallow`, and a false
994994 value disables threading.
@@ -1419,21 +1419,21 @@ instaweb.port::
14191419interactive.singlekey::
14201420 In interactive commands, allow the user to provide one-letter
14211421 input with a single key (i.e., without hitting enter).
1422- Currently this is used by the `\ --patch` mode of
1422+ Currently this is used by the `--patch` mode of
14231423 linkgit:git-add[1], linkgit:git-checkout[1], linkgit:git-commit[1],
14241424 linkgit:git-reset[1], and linkgit:git-stash[1]. Note that this
14251425 setting is silently ignored if portable keystroke input
14261426 is not available.
14271427
14281428log.abbrevCommit::
14291429 If true, makes linkgit:git-log[1], linkgit:git-show[1], and
1430- linkgit:git-whatchanged[1] assume `\ --abbrev-commit`. You may
1431- override this option with `\ --no-abbrev-commit`.
1430+ linkgit:git-whatchanged[1] assume `--abbrev-commit`. You may
1431+ override this option with `--no-abbrev-commit`.
14321432
14331433log.date::
14341434 Set the default date-time mode for the 'log' command.
14351435 Setting a value for log.date is similar to using 'git log''s
1436- `\ --date` option. Possible values are `relative`, `local`,
1436+ `--date` option. Possible values are `relative`, `local`,
14371437 `default`, `iso`, `rfc`, and `short`; see linkgit:git-log[1]
14381438 for details.
14391439
@@ -1623,18 +1623,18 @@ pack.indexVersion::
16231623 and this config option ignored whenever the corresponding pack is
16241624 larger than 2 GB.
16251625+
1626- If you have an old git that does not understand the version 2 `{asterisk} .idx` file,
1626+ If you have an old git that does not understand the version 2 `* .idx` file,
16271627cloning or fetching over a non native protocol (e.g. "http" and "rsync")
1628- that will copy both `{asterisk} .pack` file and corresponding `{asterisk} .idx` file from the
1628+ that will copy both `* .pack` file and corresponding `* .idx` file from the
16291629other side may give you a repository that cannot be accessed with your
1630- older version of git. If the `{asterisk} .pack` file is smaller than 2 GB, however,
1630+ older version of git. If the `* .pack` file is smaller than 2 GB, however,
16311631you can use linkgit:git-index-pack[1] on the *.pack file to regenerate
1632- the `{asterisk} .idx` file.
1632+ the `* .idx` file.
16331633
16341634pack.packSizeLimit::
16351635 The maximum size of a pack. This setting only affects
16361636 packing to a file when repacking, i.e. the git:// protocol
1637- is unaffected. It can be overridden by the `\ --max-pack-size`
1637+ is unaffected. It can be overridden by the `--max-pack-size`
16381638 option of linkgit:git-repack[1]. The minimum size allowed is
16391639 limited to 1 MiB. The default is unlimited.
16401640 Common unit suffixes of 'k', 'm', or 'g' are
@@ -1644,18 +1644,18 @@ pager.<cmd>::
16441644 If the value is boolean, turns on or off pagination of the
16451645 output of a particular git subcommand when writing to a tty.
16461646 Otherwise, turns on pagination for the subcommand using the
1647- pager specified by the value of `pager.<cmd>`. If `\ --paginate`
1648- or `\ --no-pager` is specified on the command line, it takes
1647+ pager specified by the value of `pager.<cmd>`. If `--paginate`
1648+ or `--no-pager` is specified on the command line, it takes
16491649 precedence over this option. To disable pagination for all
16501650 commands, set `core.pager` or `GIT_PAGER` to `cat`.
16511651
16521652pretty.<name>::
16531653 Alias for a --pretty= format string, as specified in
16541654 linkgit:git-log[1]. Any aliases defined here can be used just
16551655 as the built-in pretty formats could. For example,
1656- running `git config pretty.changelog "format:{asterisk} %H %s"`
1656+ running `git config pretty.changelog "format:* %H %s"`
16571657 would cause the invocation `git log --pretty=changelog`
1658- to be equivalent to running `git log "--pretty=format:{asterisk} %H %s"`.
1658+ to be equivalent to running `git log "--pretty=format:* %H %s"`.
16591659 Note that an alias with the same name as a built-in format
16601660 will be silently ignored.
16611661
@@ -1768,7 +1768,7 @@ remote.<name>.push::
17681768
17691769remote.<name>.mirror::
17701770 If true, pushing to this remote will automatically behave
1771- as if the `\ --mirror` option was given on the command line.
1771+ as if the `--mirror` option was given on the command line.
17721772
17731773remote.<name>.skipDefaultUpdate::
17741774 If true, this remote will be skipped by default when updating
0 commit comments