Skip to content

Commit

Permalink
git-fetch-pack: really do not ask for funny refs
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Johannes Schindelin authored and Junio C Hamano committed Jan 20, 2006
1 parent e93ec6f commit e921fb8
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions fetch-pack.c
Original file line number Diff line number Diff line change
Expand Up @@ -262,9 +262,6 @@ static void filter_refs(struct ref **refs, int nr_match, char **match)
{
struct ref *prev, *current, *next;

if (!nr_match)
return;

for (prev = NULL, current = *refs; current; current = next) {
next = current->next;
if ((!memcmp(current->name, "refs/", 5) &&
Expand Down

0 comments on commit e921fb8

Please sign in to comment.