summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: e93ec6f)
raw | patch | inline | side by side (parent: e93ec6f)
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | |
Wed, 18 Jan 2006 23:24:04 +0000 (00:24 +0100) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Fri, 20 Jan 2006 02:29:43 +0000 (18:29 -0800) |
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>
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>
fetch-pack.c | patch | blob | history |
diff --git a/fetch-pack.c b/fetch-pack.c
index d34f322477a9a072da3981c7ba49c87232ed8bc4..27f5d2a5ff78340d791d1162ec07c153740ac2d2 100644 (file)
--- a/fetch-pack.c
+++ b/fetch-pack.c
{
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) &&