summaryrefslogtreecommitdiff
path: root/builtin-clone.c
diff options
context:
space:
mode:
authorSteve Haslam <shaslam@lastminute.com>2008-07-25 17:51:51 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-07-26 00:10:14 (GMT)
commit837c8767130ec71089e654f92cf24e8277a3bda5 (patch)
treea5a23daaadff6abc31004445e206655f0d1140c8 /builtin-clone.c
parent7198203ae37c11327c0d01f1e37f3e74381755a9 (diff)
downloadgit-837c8767130ec71089e654f92cf24e8277a3bda5.zip
git-837c8767130ec71089e654f92cf24e8277a3bda5.tar.gz
git-837c8767130ec71089e654f92cf24e8277a3bda5.tar.bz2
Propagate -u/--upload-pack option of "git clone" to transport.
The -u option to override the remote system's path to git-upload-pack was being ignored by "git clone"; caused by a missing call to transport_set_option to set TRANS_OPT_UPLOADPACK. Presumably this crept in when git-clone was converted from shell to C. Signed-off-by: Steve Haslam <shaslam@lastminute.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-clone.c')
-rw-r--r--builtin-clone.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/builtin-clone.c b/builtin-clone.c
index 3522245..e086a40 100644
--- a/builtin-clone.c
+++ b/builtin-clone.c
@@ -480,6 +480,10 @@ int cmd_clone(int argc, const char **argv, const char *prefix)
if (option_quiet)
transport->verbose = -1;
+ if (option_upload_pack)
+ transport_set_option(transport, TRANS_OPT_UPLOADPACK,
+ option_upload_pack);
+
refs = transport_get_remote_refs(transport);
transport_fetch_refs(transport, refs);
}