diff options
| author | Junio C Hamano <gitster@pobox.com> | 2009-07-08 09:52:14 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2009-07-08 09:52:14 -0700 |
| commit | b13493b2b492d433cf1e3b33a840bc3122f95ee0 (patch) | |
| tree | 70ef887870dc5c52e1e20f5604ecfd5073a0f1ad | |
| parent | Documentation: update description of shell aliases (diff) | |
| parent | git-remote: fix missing .uploadpack usage for show command (diff) | |
| download | git-b13493b2b492d433cf1e3b33a840bc3122f95ee0.tar.gz git-b13493b2b492d433cf1e3b33a840bc3122f95ee0.zip | |
Merge branch 'cf/maint-remote-uploadpack-useconfig-fix' into maint
* cf/maint-remote-uploadpack-useconfig-fix:
git-remote: fix missing .uploadpack usage for show command
| -rw-r--r-- | builtin-remote.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-remote.c b/builtin-remote.c index d436412d9b..7685cfcaf0 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); |
