summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorUwe Kleine-König <ukleinek@informatik.uni-freiburg.de>2007-01-25 04:45:39 (GMT)
committerJunio C Hamano <junkio@cox.net>2007-01-25 07:06:30 (GMT)
commit5dee29ac0fc95999a42c5cbac767724a9ff73cfa (patch)
tree657b55a44ddf363f6a9540b0b4e5eb900ab99bc1 /Documentation
parente28714c527339a477fca226765163b9361d94285 (diff)
downloadgit-5dee29ac0fc95999a42c5cbac767724a9ff73cfa.zip
git-5dee29ac0fc95999a42c5cbac767724a9ff73cfa.tar.gz
git-5dee29ac0fc95999a42c5cbac767724a9ff73cfa.tar.bz2
make --upload-pack option to git-fetch configurable
This introduces the config item remote.<name>.uploadpack to override the default value (which is "git-upload-pack"). Signed-off-by: Uwe Kleine-König <ukleinek@informatik.uni-freiburg.de> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/config.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt
index 8086d75..3f2fa09 100644
--- a/Documentation/config.txt
+++ b/Documentation/config.txt
@@ -429,9 +429,13 @@ remote.<name>.push::
gitlink:git-push[1].
remote.<name>.receivepack::
- The default program to execute on the remote side when pulling. See
+ The default program to execute on the remote side when pushing. See
option \--exec of gitlink:git-push[1].
+remote.<name>.uploadpack::
+ The default program to execute on the remote side when fetching. See
+ option \--exec of gitlink:git-fetch-pack[1].
+
repack.usedeltabaseoffset::
Allow gitlink:git-repack[1] to create packs that uses
delta-base offset. Defaults to false.