summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Frey <cdfrey@foursquare.net>2009-06-25 21:21:35 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-06-25 21:47:49 (GMT)
commit345a38039414366e91a32f3c01257c3afcf78e27 (patch)
treefaa6a01edbe895f161f8d8183ffbea0227dcaeae
parent6651c3f706cc47d8055ab43f9f7907202d10655d (diff)
downloadgit-345a38039414366e91a32f3c01257c3afcf78e27.zip
git-345a38039414366e91a32f3c01257c3afcf78e27.tar.gz
git-345a38039414366e91a32f3c01257c3afcf78e27.tar.bz2
git-remote: fix missing .uploadpack usage for show command
For users pulling from machines with self compiled git installs, in non-PATH locations, they can set the config option remote.<name>.uploadpack to set the location of git-upload-pack. When using 'git remote show <name>', the remote HEAD check did not use the uploadpack configuration setting, and would not use the configured program. In builtin-remote.c, the config setting is already loaded with the call to remote_get(), so this patch passes that remote along to transport_get(). Signed-off-by: Chris Frey <cdfrey@foursquare.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--builtin-remote.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-remote.c b/builtin-remote.c
index d436412..7685cfc 100644
--- a/builtin-remote.c
+++ b/builtin-remote.c
@@ -789,7 +789,7 @@ static int get_remote_ref_states(const char *name,
read_branches();
if (query) {
- transport = transport_get(NULL, states->remote->url_nr > 0 ?
+ transport = transport_get(states->remote, states->remote->url_nr > 0 ?
states->remote->url[0] : NULL);
remote_refs = transport_get_remote_refs(transport);
transport_disconnect(transport);