@@ -434,7 +434,7 @@ core.gitProxy::
434
434
may be set multiple times and is matched in the given order;
435
435
the first match wins.
436
436
+
437
- Can be overridden by the ' GIT_PROXY_COMMAND' environment variable
437
+ Can be overridden by the ` GIT_PROXY_COMMAND` environment variable
438
438
(which always applies universally, without the special "for"
439
439
handling).
440
440
+
@@ -619,7 +619,7 @@ core.excludesFile::
619
619
core.askPass::
620
620
Some commands (e.g. svn and http interfaces) that interactively
621
621
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`
623
623
environment variable. If not set, fall back to the value of the
624
624
'SSH_ASKPASS' environment variable or, failing that, a simple password
625
625
prompt. The external program shall be given a suitable prompt as
@@ -747,7 +747,7 @@ core.notesRef::
747
747
notes should be printed.
748
748
+
749
749
This 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].
751
751
752
752
core.sparseCheckout::
753
753
Enable "sparse checkout" feature. See section "Sparse checkout" in
@@ -783,7 +783,7 @@ it will be treated as a shell command. For example, defining
783
783
"gitk --all --not ORIG_HEAD". Note that shell commands will be
784
784
executed from the top-level directory of a repository, which may
785
785
not 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'
787
787
from the original current directory. See linkgit:git-rev-parse[1].
788
788
789
789
am.keepcr::
@@ -1561,7 +1561,7 @@ guitool.<name>.cmd::
1561
1561
of the linkgit:git-gui[1] `Tools` menu is invoked. This option is
1562
1562
mandatory for every tool. The command is executed from the root of
1563
1563
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
1565
1565
'FILENAME', and the name of the current branch as 'CUR_BRANCH' (if
1566
1566
the head is detached, 'CUR_BRANCH' is empty).
1567
1567
@@ -1646,7 +1646,7 @@ http.proxyAuthMethod::
1646
1646
only takes effect if the configured proxy string contains a user name part
1647
1647
(i.e. is of the form 'user@host' or 'user@host:port'). This can be
1648
1648
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
1650
1650
variable. Possible values are:
1651
1651
+
1652
1652
--
@@ -1699,9 +1699,9 @@ http.sslVersion::
1699
1699
- tlsv1.2
1700
1700
1701
1701
+
1702
- Can be overridden by the ' GIT_SSL_VERSION' environment variable.
1702
+ Can be overridden by the ` GIT_SSL_VERSION` environment variable.
1703
1703
To 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
1705
1705
empty string.
1706
1706
1707
1707
http.sslCipherList::
@@ -1712,41 +1712,41 @@ http.sslCipherList::
1712
1712
option; see the libcurl documentation for more details on the format
1713
1713
of this list.
1714
1714
+
1715
- Can be overridden by the ' GIT_SSL_CIPHER_LIST' environment variable.
1715
+ Can be overridden by the ` GIT_SSL_CIPHER_LIST` environment variable.
1716
1716
To 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
1718
1718
empty string.
1719
1719
1720
1720
http.sslVerify::
1721
1721
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
1723
1723
variable.
1724
1724
1725
1725
http.sslCert::
1726
1726
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
1728
1728
variable.
1729
1729
1730
1730
http.sslKey::
1731
1731
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
1733
1733
variable.
1734
1734
1735
1735
http.sslCertPasswordProtected::
1736
1736
Enable Git's password prompt for the SSL certificate. Otherwise
1737
1737
OpenSSL will prompt the user, possibly many times, if the
1738
1738
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.
1740
1740
1741
1741
http.sslCAInfo::
1742
1742
File containing the certificates to verify the peer with when
1743
1743
fetching or pushing over HTTPS. Can be overridden by the
1744
- ' GIT_SSL_CAINFO' environment variable.
1744
+ ` GIT_SSL_CAINFO` environment variable.
1745
1745
1746
1746
http.sslCAPath::
1747
1747
Path containing files with the CA certificates to verify the peer
1748
1748
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.
1750
1750
1751
1751
http.pinnedpubkey::
1752
1752
Public key of the https service. It may either be the filename of
@@ -1766,7 +1766,7 @@ http.sslTry::
1766
1766
1767
1767
http.maxRequests::
1768
1768
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.
1770
1770
1771
1771
http.minSessions::
1772
1772
The number of curl sessions (counted across slots) to be kept across
@@ -1785,13 +1785,13 @@ http.postBuffer::
1785
1785
http.lowSpeedLimit, http.lowSpeedTime::
1786
1786
If the HTTP transfer speed is less than 'http.lowSpeedLimit'
1787
1787
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.
1790
1790
1791
1791
http.noEPSV::
1792
1792
A boolean which disables using of EPSV ftp command by curl.
1793
1793
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`
1795
1795
environment variable. Default is false (curl will use EPSV).
1796
1796
1797
1797
http.userAgent::
@@ -1801,7 +1801,7 @@ http.userAgent::
1801
1801
such as Mozilla/4.0. This may be necessary, for instance, if
1802
1802
connecting through a firewall that restricts HTTP connections to a set
1803
1803
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.
1805
1805
1806
1806
http.<url>.*::
1807
1807
Any of the http.* options above can be applied selectively to some URLs.
@@ -2855,12 +2855,12 @@ url.<base>.pushInsteadOf::
2855
2855
2856
2856
user.email::
2857
2857
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
2859
2859
'EMAIL' environment variables. See linkgit:git-commit-tree[1].
2860
2860
2861
2861
user.name::
2862
2862
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`
2864
2864
environment variables. See linkgit:git-commit-tree[1].
2865
2865
2866
2866
user.useConfigOnly::
0 commit comments