@@ -140,7 +140,7 @@ boolean::
140140 false;; Boolean false can be spelled as `no`, `off`,
141141 `false`, or `0`.
142142+
143- When converting value to the canonical form using ' --bool' type
143+ When converting value to the canonical form using ` --bool` type
144144specifier; 'git config' will ensure that the output is "true" or
145145"false" (spelled in lowercase).
146146
@@ -488,7 +488,7 @@ core.worktree::
488488 If `GIT_COMMON_DIR` environment variable is set, core.worktree
489489 is ignored and not used for determining the root of working tree.
490490 This can be overridden by the `GIT_WORK_TREE` environment
491- variable and the ' --work-tree' command-line option.
491+ variable and the ` --work-tree` command-line option.
492492 The value can be an absolute path or relative to the path to
493493 the .git directory, which is either specified by --git-dir
494494 or GIT_DIR, or automatically discovered.
@@ -786,7 +786,7 @@ core.abbrev::
786786add.ignoreErrors::
787787add.ignore-errors (deprecated)::
788788 Tells 'git add' to continue adding files when some files cannot be
789- added due to indexing errors. Equivalent to the ' --ignore-errors'
789+ added due to indexing errors. Equivalent to the ` --ignore-errors`
790790 option of linkgit:git-add[1]. `add.ignore-errors` is deprecated,
791791 as it does not follow the usual naming convention for configuration
792792 variables.
@@ -812,9 +812,9 @@ from the original current directory. See linkgit:git-rev-parse[1].
812812
813813am.keepcr::
814814 If true, git-am will call git-mailsplit for patches in mbox format
815- with parameter ' --keep-cr' . In this case git-mailsplit will
815+ with parameter ` --keep-cr` . In this case git-mailsplit will
816816 not remove `\r` from lines ending with `\r\n`. Can be overridden
817- by giving ' --no-keep-cr' from the command line.
817+ by giving ` --no-keep-cr` from the command line.
818818 See linkgit:git-am[1], linkgit:git-mailsplit[1].
819819
820820am.threeWay::
@@ -827,15 +827,15 @@ am.threeWay::
827827
828828apply.ignoreWhitespace::
829829 When set to 'change', tells 'git apply' to ignore changes in
830- whitespace, in the same way as the ' --ignore-space-change'
830+ whitespace, in the same way as the ` --ignore-space-change`
831831 option.
832832 When set to one of: no, none, never, false tells 'git apply' to
833833 respect all whitespace differences.
834834 See linkgit:git-apply[1].
835835
836836apply.whitespace::
837837 Tells 'git apply' how to handle whitespaces, in the same way
838- as the ' --whitespace' option. See linkgit:git-apply[1].
838+ as the ` --whitespace` option. See linkgit:git-apply[1].
839839
840840branch.autoSetupMerge::
841841 Tells 'git branch' and 'git checkout' to set up new branches
@@ -937,7 +937,7 @@ browser.<tool>.cmd::
937937
938938browser.<tool>.path::
939939 Override the path for the given tool that may be used to
940- browse HTML help (see '-w' option in linkgit:git-help[1]) or a
940+ browse HTML help (see `-w` option in linkgit:git-help[1]) or a
941941 working repository in gitweb (see linkgit:git-instaweb[1]).
942942
943943clean.requireForce::
@@ -1436,9 +1436,9 @@ gitcvs.logFile::
14361436
14371437gitcvs.usecrlfattr::
14381438 If true, the server will look up the end-of-line conversion
1439- attributes for files to determine the '-k' modes to use. If
1439+ attributes for files to determine the `-k` modes to use. If
14401440 the attributes force Git to treat a file as text,
1441- the '-k' mode will be left blank so CVS clients will
1441+ the `-k` mode will be left blank so CVS clients will
14421442 treat it as text. If they suppress text conversion, the file
14431443 will be set with '-kb' mode, which suppresses any newline munging
14441444 the client might otherwise do. If the attributes do not allow
@@ -1508,16 +1508,16 @@ gitweb.snapshot::
15081508 See linkgit:gitweb.conf[5] for description.
15091509
15101510grep.lineNumber::
1511- If set to true, enable '-n' option by default.
1511+ If set to true, enable `-n` option by default.
15121512
15131513grep.patternType::
15141514 Set the default matching behavior. Using a value of 'basic', 'extended',
1515- 'fixed', or 'perl' will enable the ' --basic-regexp', ' --extended-regexp' ,
1516- ' --fixed-strings' , or ' --perl-regexp' option accordingly, while the
1515+ 'fixed', or 'perl' will enable the ` --basic-regexp`, ` --extended-regexp` ,
1516+ ` --fixed-strings` , or ` --perl-regexp` option accordingly, while the
15171517 value 'default' will return to the default matching behavior.
15181518
15191519grep.extendedRegexp::
1520- If set to true, enable ' --extended-regexp' option by default. This
1520+ If set to true, enable ` --extended-regexp` option by default. This
15211521 option is ignored when the `grep.patternType` option is set to a value
15221522 other than 'default'.
15231523
@@ -1974,7 +1974,7 @@ log.decorate::
19741974 specified, the full ref name (including prefix) will be printed.
19751975 If 'auto' is specified, then if the output is going to a terminal,
19761976 the ref names are shown as if 'short' were given, otherwise no ref
1977- names are shown. This is the same as the ' --decorate' option
1977+ names are shown. This is the same as the ` --decorate` option
19781978 of the `git log`.
19791979
19801980log.follow::
@@ -2357,16 +2357,16 @@ new default).
23572357--
23582358
23592359push.followTags::
2360- If set to true enable ' --follow-tags' option by default. You
2360+ If set to true enable ` --follow-tags` option by default. You
23612361 may override this configuration at time of push by specifying
2362- ' --no-follow-tags' .
2362+ ` --no-follow-tags` .
23632363
23642364push.gpgSign::
23652365 May be set to a boolean value, or the string 'if-asked'. A true
2366- value causes all pushes to be GPG signed, as if ' --signed' is
2366+ value causes all pushes to be GPG signed, as if ` --signed` is
23672367 passed to linkgit:git-push[1]. The string 'if-asked' causes
23682368 pushes to be signed if the server supports it, as if
2369- ' --signed=if-asked' is passed to 'git push'. A false value may
2369+ ` --signed=if-asked` is passed to 'git push'. A false value may
23702370 override a value from a lower-priority config file. An explicit
23712371 command-line flag always overrides this config option.
23722372
@@ -2389,7 +2389,7 @@ rebase.stat::
23892389 rebase. False by default.
23902390
23912391rebase.autoSquash::
2392- If set to true enable ' --autosquash' option by default.
2392+ If set to true enable ` --autosquash` option by default.
23932393
23942394rebase.autoStash::
23952395 When set to true, automatically create a temporary stash
0 commit comments