aboutsummaryrefslogtreecommitdiff
path: root/Documentation/config.txt
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-07-19 13:22:12 -0700
committerJunio C Hamano <gitster@pobox.com>2016-07-19 13:22:12 -0700
commitdc21164e66e39670931d3270f8db4c0ed0e0b816 (patch)
treedb152f8f0a5c43972972a7b298f8fa932544dfa1 /Documentation/config.txt
parent29493589e97a2de0c4c1c314f61ccafaee3b5caf (diff)
parent3c8ede3ff312134e84d1b23a309cd7d2a7c98e9c (diff)
downloadgit-dc21164e66e39670931d3270f8db4c0ed0e0b816.tar.gz
git-dc21164e66e39670931d3270f8db4c0ed0e0b816.tar.xz
Merge branch 'nd/connect-ssh-command-config'
A new configuration variable core.sshCommand has been added to specify what value for GIT_SSH_COMMAND to use per repository. * nd/connect-ssh-command-config: connect: read $GIT_SSH_COMMAND from config file
Diffstat (limited to 'Documentation/config.txt')
-rw-r--r--Documentation/config.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt
index 16dc22d9c..226c12a15 100644
--- a/Documentation/config.txt
+++ b/Documentation/config.txt
@@ -450,6 +450,13 @@ specify that no proxy be used for a given domain pattern.
This is useful for excluding servers inside a firewall from
proxy use, while defaulting to a common proxy for external domains.
+core.sshCommand::
+ If this variable is set, `git fetch` and `git push` will
+ use the specified command instead of `ssh` when they need to
+ connect to a remote system. The command is in the same form as
+ the `GIT_SSH_COMMAND` environment variable and is overridden
+ when the environment variable is set.
+
core.ignoreStat::
If true, Git will avoid using lstat() calls to detect if files have
changed by setting the "assume-unchanged" bit for those tracked files