Skip to content

Commit e921fb8

Browse files
dschoJunio C Hamano
authored andcommitted
git-fetch-pack: really do not ask for funny refs
If git-fetch-pack was called with out any refspec, it would ask the server for funny refs. That cannot work, since the funny refs are not marked as OUR_REF by upload-pack, which just exits with an error. Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de> Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent e93ec6f commit e921fb8

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

fetch-pack.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -262,9 +262,6 @@ static void filter_refs(struct ref **refs, int nr_match, char **match)
262262
{
263263
struct ref *prev, *current, *next;
264264

265-
if (!nr_match)
266-
return;
267-
268265
for (prev = NULL, current = *refs; current; current = next) {
269266
next = current->next;
270267
if ((!memcmp(current->name, "refs/", 5) &&

0 commit comments

Comments
 (0)