git-request-pull.sh should use git-parse-remote:get_uploadpack() to load a configured remote.REMOTE.uploadpack like "git remote show" and "git fetch". This allows one to specify the path of git-upload-pack on the remote side. Signed-off-by: Tom Grennan <tgrennan@xxxxxxxxxxx> --- git-request-pull.sh | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/git-request-pull.sh b/git-request-pull.sh index a2cf5b8..612e94d 100755 --- a/git-request-pull.sh +++ b/git-request-pull.sh @@ -25,8 +25,9 @@ headrev=`git rev-parse --verify "$head"^0` || exit merge_base=`git merge-base $baserev $headrev` || die "fatal: No commits in common between $base and $head" +upload_pack=$(get_uploadpack "$url") url=$(get_remote_url "$url") -branch=$(git ls-remote "$url" \ +branch=$(git ls-remote --upload-pack="$upload_pack" "$url" \ | sed -n -e "/^$headrev refs.heads./{ s/^.* refs.heads.// p -- 1.6.2.1.dirty -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html