@@ -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
@@ -487,10 +487,10 @@ repository's usual working tree).
487
487
488
488
core.logAllRefUpdates::
489
489
Enable the reflog. Updates to a ref <ref> is logged to the file
490
- "$GIT_DIR/logs/<ref>", by appending the new and old
490
+ "` $GIT_DIR/logs/<ref>` ", by appending the new and old
491
491
SHA-1, the date/time and the reason of the update, but
492
492
only when the file exists. If this configuration
493
- variable is set to true, missing "$GIT_DIR/logs/<ref>"
493
+ variable is set to true, missing "` $GIT_DIR/logs/<ref>` "
494
494
file is automatically created for branch heads (i.e. under
495
495
refs/heads/), remote refs (i.e. under refs/remotes/),
496
496
note refs (i.e. under refs/notes/), and the symbolic ref HEAD.
@@ -597,8 +597,8 @@ core.excludesFile::
597
597
Specifies the pathname to the file that contains patterns to
598
598
describe paths that are not meant to be tracked, in addition
599
599
to '.gitignore' (per-directory) and '.git/info/exclude'.
600
- Defaults to $XDG_CONFIG_HOME/git/ignore.
601
- If $XDG_CONFIG_HOME is either not set or empty, $HOME/.config/git/ignore
600
+ Defaults to ` $XDG_CONFIG_HOME/git/ignore` .
601
+ If ` $XDG_CONFIG_HOME` is either not set or empty, ` $HOME/.config/git/ignore`
602
602
is used instead. See linkgit:gitignore[5].
603
603
604
604
core.askPass::
@@ -615,8 +615,8 @@ core.attributesFile::
615
615
'.git/info/attributes', Git looks into this file for attributes
616
616
(see linkgit:gitattributes[5]). Path expansions are made the same
617
617
way as for `core.excludesFile`. Its default value is
618
- $XDG_CONFIG_HOME/git/attributes. If $XDG_CONFIG_HOME is either not
619
- set or empty, $HOME/.config/git/attributes is used instead.
618
+ ` $XDG_CONFIG_HOME/git/attributes` . If ` $XDG_CONFIG_HOME` is either not
619
+ set or empty, ` $HOME/.config/git/attributes` is used instead.
620
620
621
621
core.editor::
622
622
Commands such as `commit` and `tag` that lets you edit
@@ -1324,7 +1324,7 @@ gc.worktreePruneExpire::
1324
1324
'git worktree prune --expire 3.months.ago'.
1325
1325
This config variable can be used to set a different grace
1326
1326
period. The value "now" may be used to disable the grace
1327
- period and prune $GIT_DIR/worktrees immediately, or "never"
1327
+ period and prune ` $GIT_DIR/worktrees` immediately, or "never"
1328
1328
may be used to suppress pruning.
1329
1329
1330
1330
gc.reflogExpire::
@@ -1456,13 +1456,13 @@ grep.extendedRegexp::
1456
1456
other than 'default'.
1457
1457
1458
1458
gpg.program::
1459
- Use this custom program instead of "gpg" found on $PATH when
1459
+ Use this custom program instead of "` gpg` " found on ` $PATH` when
1460
1460
making or verifying a PGP signature. The program must support the
1461
1461
same command-line interface as GPG, namely, to verify a detached
1462
- signature, "gpg --verify $file - <$signature" is run, and the
1462
+ signature, "` gpg --verify $file - <$signature` " is run, and the
1463
1463
program is expected to signal a good signature by exiting with
1464
1464
code 0, and to generate an ASCII-armored detached signature, the
1465
- standard input of "gpg -bsau $key" is fed with the contents to be
1465
+ standard input of "` gpg -bsau $key` " is fed with the contents to be
1466
1466
signed, and the program is expected to send the result to its
1467
1467
standard output.
1468
1468
0 commit comments