@@ -434,7 +434,7 @@ core.gitProxy::
434434 may be set multiple times and is matched in the given order;
435435 the first match wins.
436436+
437- Can be overridden by the ' GIT_PROXY_COMMAND' environment variable
437+ Can be overridden by the ` GIT_PROXY_COMMAND` environment variable
438438(which always applies universally, without the special "for"
439439handling).
440440+
@@ -619,7 +619,7 @@ core.excludesFile::
619619core.askPass::
620620 Some commands (e.g. svn and http interfaces) that interactively
621621 ask for a password can be told to use an external program given
622- via the value of this variable. Can be overridden by the ' GIT_ASKPASS'
622+ via the value of this variable. Can be overridden by the ` GIT_ASKPASS`
623623 environment variable. If not set, fall back to the value of the
624624 'SSH_ASKPASS' environment variable or, failing that, a simple password
625625 prompt. The external program shall be given a suitable prompt as
@@ -747,7 +747,7 @@ core.notesRef::
747747 notes should be printed.
748748+
749749This setting defaults to "refs/notes/commits", and it can be overridden by
750- the ' GIT_NOTES_REF' environment variable. See linkgit:git-notes[1].
750+ the ` GIT_NOTES_REF` environment variable. See linkgit:git-notes[1].
751751
752752core.sparseCheckout::
753753 Enable "sparse checkout" feature. See section "Sparse checkout" in
@@ -783,7 +783,7 @@ it will be treated as a shell command. For example, defining
783783"gitk --all --not ORIG_HEAD". Note that shell commands will be
784784executed from the top-level directory of a repository, which may
785785not necessarily be the current directory.
786- ' GIT_PREFIX' is set as returned by running 'git rev-parse --show-prefix'
786+ ` GIT_PREFIX` is set as returned by running 'git rev-parse --show-prefix'
787787from the original current directory. See linkgit:git-rev-parse[1].
788788
789789am.keepcr::
@@ -1561,7 +1561,7 @@ guitool.<name>.cmd::
15611561 of the linkgit:git-gui[1] `Tools` menu is invoked. This option is
15621562 mandatory for every tool. The command is executed from the root of
15631563 the working directory, and in the environment it receives the name of
1564- the tool as ' GIT_GUITOOL' , the name of the currently selected file as
1564+ the tool as ` GIT_GUITOOL` , the name of the currently selected file as
15651565 'FILENAME', and the name of the current branch as 'CUR_BRANCH' (if
15661566 the head is detached, 'CUR_BRANCH' is empty).
15671567
@@ -1646,7 +1646,7 @@ http.proxyAuthMethod::
16461646 only takes effect if the configured proxy string contains a user name part
16471647 (i.e. is of the form 'user@host' or 'user@host:port'). This can be
16481648 overridden on a per-remote basis; see `remote.<name>.proxyAuthMethod`.
1649- Both can be overridden by the ' GIT_HTTP_PROXY_AUTHMETHOD' environment
1649+ Both can be overridden by the ` GIT_HTTP_PROXY_AUTHMETHOD` environment
16501650 variable. Possible values are:
16511651+
16521652--
@@ -1699,9 +1699,9 @@ http.sslVersion::
16991699 - tlsv1.2
17001700
17011701+
1702- Can be overridden by the ' GIT_SSL_VERSION' environment variable.
1702+ Can be overridden by the ` GIT_SSL_VERSION` environment variable.
17031703To force git to use libcurl's default ssl version and ignore any
1704- explicit http.sslversion option, set ' GIT_SSL_VERSION' to the
1704+ explicit http.sslversion option, set ` GIT_SSL_VERSION` to the
17051705empty string.
17061706
17071707http.sslCipherList::
@@ -1712,41 +1712,41 @@ http.sslCipherList::
17121712 option; see the libcurl documentation for more details on the format
17131713 of this list.
17141714+
1715- Can be overridden by the ' GIT_SSL_CIPHER_LIST' environment variable.
1715+ Can be overridden by the ` GIT_SSL_CIPHER_LIST` environment variable.
17161716To force git to use libcurl's default cipher list and ignore any
1717- explicit http.sslCipherList option, set ' GIT_SSL_CIPHER_LIST' to the
1717+ explicit http.sslCipherList option, set ` GIT_SSL_CIPHER_LIST` to the
17181718empty string.
17191719
17201720http.sslVerify::
17211721 Whether to verify the SSL certificate when fetching or pushing
1722- over HTTPS. Can be overridden by the ' GIT_SSL_NO_VERIFY' environment
1722+ over HTTPS. Can be overridden by the ` GIT_SSL_NO_VERIFY` environment
17231723 variable.
17241724
17251725http.sslCert::
17261726 File containing the SSL certificate when fetching or pushing
1727- over HTTPS. Can be overridden by the ' GIT_SSL_CERT' environment
1727+ over HTTPS. Can be overridden by the ` GIT_SSL_CERT` environment
17281728 variable.
17291729
17301730http.sslKey::
17311731 File containing the SSL private key when fetching or pushing
1732- over HTTPS. Can be overridden by the ' GIT_SSL_KEY' environment
1732+ over HTTPS. Can be overridden by the ` GIT_SSL_KEY` environment
17331733 variable.
17341734
17351735http.sslCertPasswordProtected::
17361736 Enable Git's password prompt for the SSL certificate. Otherwise
17371737 OpenSSL will prompt the user, possibly many times, if the
17381738 certificate or private key is encrypted. Can be overridden by the
1739- ' GIT_SSL_CERT_PASSWORD_PROTECTED' environment variable.
1739+ ` GIT_SSL_CERT_PASSWORD_PROTECTED` environment variable.
17401740
17411741http.sslCAInfo::
17421742 File containing the certificates to verify the peer with when
17431743 fetching or pushing over HTTPS. Can be overridden by the
1744- ' GIT_SSL_CAINFO' environment variable.
1744+ ` GIT_SSL_CAINFO` environment variable.
17451745
17461746http.sslCAPath::
17471747 Path containing files with the CA certificates to verify the peer
17481748 with when fetching or pushing over HTTPS. Can be overridden
1749- by the ' GIT_SSL_CAPATH' environment variable.
1749+ by the ` GIT_SSL_CAPATH` environment variable.
17501750
17511751http.pinnedpubkey::
17521752 Public key of the https service. It may either be the filename of
@@ -1766,7 +1766,7 @@ http.sslTry::
17661766
17671767http.maxRequests::
17681768 How many HTTP requests to launch in parallel. Can be overridden
1769- by the ' GIT_HTTP_MAX_REQUESTS' environment variable. Default is 5.
1769+ by the ` GIT_HTTP_MAX_REQUESTS` environment variable. Default is 5.
17701770
17711771http.minSessions::
17721772 The number of curl sessions (counted across slots) to be kept across
@@ -1785,13 +1785,13 @@ http.postBuffer::
17851785http.lowSpeedLimit, http.lowSpeedTime::
17861786 If the HTTP transfer speed is less than 'http.lowSpeedLimit'
17871787 for longer than 'http.lowSpeedTime' seconds, the transfer is aborted.
1788- Can be overridden by the ' GIT_HTTP_LOW_SPEED_LIMIT' and
1789- ' GIT_HTTP_LOW_SPEED_TIME' environment variables.
1788+ Can be overridden by the ` GIT_HTTP_LOW_SPEED_LIMIT` and
1789+ ` GIT_HTTP_LOW_SPEED_TIME` environment variables.
17901790
17911791http.noEPSV::
17921792 A boolean which disables using of EPSV ftp command by curl.
17931793 This can helpful with some "poor" ftp servers which don't
1794- support EPSV mode. Can be overridden by the ' GIT_CURL_FTP_NO_EPSV'
1794+ support EPSV mode. Can be overridden by the ` GIT_CURL_FTP_NO_EPSV`
17951795 environment variable. Default is false (curl will use EPSV).
17961796
17971797http.userAgent::
@@ -1801,7 +1801,7 @@ http.userAgent::
18011801 such as Mozilla/4.0. This may be necessary, for instance, if
18021802 connecting through a firewall that restricts HTTP connections to a set
18031803 of common USER_AGENT strings (but not including those like git/1.7.1).
1804- Can be overridden by the ' GIT_HTTP_USER_AGENT' environment variable.
1804+ Can be overridden by the ` GIT_HTTP_USER_AGENT` environment variable.
18051805
18061806http.<url>.*::
18071807 Any of the http.* options above can be applied selectively to some URLs.
@@ -2855,12 +2855,12 @@ url.<base>.pushInsteadOf::
28552855
28562856user.email::
28572857 Your email address to be recorded in any newly created commits.
2858- Can be overridden by the ' GIT_AUTHOR_EMAIL', ' GIT_COMMITTER_EMAIL' , and
2858+ Can be overridden by the ` GIT_AUTHOR_EMAIL`, ` GIT_COMMITTER_EMAIL` , and
28592859 'EMAIL' environment variables. See linkgit:git-commit-tree[1].
28602860
28612861user.name::
28622862 Your full name to be recorded in any newly created commits.
2863- Can be overridden by the ' GIT_AUTHOR_NAME' and ' GIT_COMMITTER_NAME'
2863+ Can be overridden by the ` GIT_AUTHOR_NAME` and ` GIT_COMMITTER_NAME`
28642864 environment variables. See linkgit:git-commit-tree[1].
28652865
28662866user.useConfigOnly::
0 commit comments