@@ -117,7 +117,7 @@ Example
117
117
[include]
118
118
path = /path/to/foo.inc ; include by absolute path
119
119
path = foo ; expand "foo" relative to the current file
120
- path = ~/foo ; expand "foo" in your $HOME directory
120
+ path = ~/foo ; expand "foo" in your ` $HOME` directory
121
121
122
122
123
123
Values
@@ -496,10 +496,10 @@ repository's usual working tree).
496
496
497
497
core.logAllRefUpdates::
498
498
Enable the reflog. Updates to a ref <ref> is logged to the file
499
- "$GIT_DIR/logs/<ref>", by appending the new and old
499
+ "` $GIT_DIR/logs/<ref>` ", by appending the new and old
500
500
SHA-1, the date/time and the reason of the update, but
501
501
only when the file exists. If this configuration
502
- variable is set to true, missing "$GIT_DIR/logs/<ref>"
502
+ variable is set to true, missing "` $GIT_DIR/logs/<ref>` "
503
503
file is automatically created for branch heads (i.e. under
504
504
refs/heads/), remote refs (i.e. under refs/remotes/),
505
505
note refs (i.e. under refs/notes/), and the symbolic ref HEAD.
@@ -606,8 +606,8 @@ core.excludesFile::
606
606
Specifies the pathname to the file that contains patterns to
607
607
describe paths that are not meant to be tracked, in addition
608
608
to '.gitignore' (per-directory) and '.git/info/exclude'.
609
- Defaults to $XDG_CONFIG_HOME/git/ignore.
610
- If $XDG_CONFIG_HOME is either not set or empty, $HOME/.config/git/ignore
609
+ Defaults to ` $XDG_CONFIG_HOME/git/ignore` .
610
+ If ` $XDG_CONFIG_HOME` is either not set or empty, ` $HOME/.config/git/ignore`
611
611
is used instead. See linkgit:gitignore[5].
612
612
613
613
core.askPass::
@@ -624,8 +624,8 @@ core.attributesFile::
624
624
'.git/info/attributes', Git looks into this file for attributes
625
625
(see linkgit:gitattributes[5]). Path expansions are made the same
626
626
way as for `core.excludesFile`. Its default value is
627
- $XDG_CONFIG_HOME/git/attributes. If $XDG_CONFIG_HOME is either not
628
- set or empty, $HOME/.config/git/attributes is used instead.
627
+ ` $XDG_CONFIG_HOME/git/attributes` . If ` $XDG_CONFIG_HOME` is either not
628
+ set or empty, ` $HOME/.config/git/attributes` is used instead.
629
629
630
630
core.hooksPath::
631
631
By default Git will look for your hooks in the
@@ -1360,7 +1360,7 @@ gc.worktreePruneExpire::
1360
1360
'git worktree prune --expire 3.months.ago'.
1361
1361
This config variable can be used to set a different grace
1362
1362
period. The value "now" may be used to disable the grace
1363
- period and prune $GIT_DIR/worktrees immediately, or "never"
1363
+ period and prune ` $GIT_DIR/worktrees` immediately, or "never"
1364
1364
may be used to suppress pruning.
1365
1365
1366
1366
gc.reflogExpire::
@@ -1500,13 +1500,13 @@ grep.fallbackToNoIndex::
1500
1500
is executed outside of a git repository. Defaults to false.
1501
1501
1502
1502
gpg.program::
1503
- Use this custom program instead of "gpg" found on $PATH when
1503
+ Use this custom program instead of "` gpg` " found on ` $PATH` when
1504
1504
making or verifying a PGP signature. The program must support the
1505
1505
same command-line interface as GPG, namely, to verify a detached
1506
- signature, "gpg --verify $file - <$signature" is run, and the
1506
+ signature, "` gpg --verify $file - <$signature` " is run, and the
1507
1507
program is expected to signal a good signature by exiting with
1508
1508
code 0, and to generate an ASCII-armored detached signature, the
1509
- standard input of "gpg -bsau $key" is fed with the contents to be
1509
+ standard input of "` gpg -bsau $key` " is fed with the contents to be
1510
1510
signed, and the program is expected to send the result to its
1511
1511
standard output.
1512
1512
0 commit comments