]> git.ipfire.org Git - thirdparty/git.git/commit - builtin/fetch-pack.c
drop "match" parameter from get_remote_heads
authorJeff King <peff@peff.net>
Tue, 13 Dec 2011 00:41:37 +0000 (19:41 -0500)
committerJunio C Hamano <gitster@pobox.com>
Tue, 13 Dec 2011 18:08:24 +0000 (10:08 -0800)
commitafe7c5ff1f7f6741d35f9852a766d151da23d7d8
tree4c78b428fdcf893d7904c05bee240b8b7a67bcf7
parent10dd3b2bf1444695416c0dac951297acf7d4e5e4
drop "match" parameter from get_remote_heads

The get_remote_heads function reads the list of remote refs
during git protocol session. It dates all the way back to
def88e9 (Commit first cut at "git-fetch-pack", 2005-07-04).
At that time, the idea was to come up with a list of refs we
were interested in, and then filter the list as we got it
from the remote side.

Later, 1baaae5 (Make maximal use of the remote refs,
2005-10-28) stopped filtering at the get_remote_heads layer,
letting us use the non-matching refs to find common history.

As a result, all callers now simply pass an empty match
list (and any future callers will want to do the same). So
let's drop these now-useless parameters.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/fetch-pack.c
builtin/send-pack.c
cache.h
connect.c
remote-curl.c
transport.c