diff options
author | Steve Haslam <shaslam@lastminute.com> | 2008-07-25 18:51:51 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-08-01 22:49:25 -0700 |
commit | 31f4e768a4b53419a1de9c4006c7b3747fc356eb (patch) | |
tree | 8ea7421bfe262496f76e1d019645e4a445f6e74c /builtin-clone.c | |
parent | bbff8aaaf2f2342b97882f93c9e30050918621c0 (diff) | |
download | git-31f4e768a4b53419a1de9c4006c7b3747fc356eb.tar.gz git-31f4e768a4b53419a1de9c4006c7b3747fc356eb.tar.xz |
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.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/builtin-clone.c b/builtin-clone.c index 7ee827526..863b22eeb 100644 --- a/builtin-clone.c +++ b/builtin-clone.c @@ -473,6 +473,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); } |