aboutsummaryrefslogtreecommitdiff
path: root/builtin-fetch.c
diff options
context:
space:
mode:
authorShawn O. Pearce <spearce@spearce.org>2007-09-16 02:32:17 -0400
committerJunio C Hamano <gitster@pobox.com>2007-09-19 03:22:31 -0700
commitf38395905b3d49bd68e0c01ca2310bf3387e1063 (patch)
tree76601af66394c3d8993ef0eb089a637a140e9f07 /builtin-fetch.c
parentad23603c3af77b47f65382ea22b30d1ecccaab6f (diff)
downloadgit-f38395905b3d49bd68e0c01ca2310bf3387e1063.tar.gz
git-f38395905b3d49bd68e0c01ca2310bf3387e1063.tar.xz
Remove more debugging from builtin-fetch
Older git-fetch.sh doesn't print "ref: X" when invoked as `git fetch $url X" so we shouldn't do that now in the new builtin version. Signed-off-by: Shawn O. Pearce <spearce@spearce.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-fetch.c')
-rw-r--r--builtin-fetch.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/builtin-fetch.c b/builtin-fetch.c
index d9272edae..20926e054 100644
--- a/builtin-fetch.c
+++ b/builtin-fetch.c
@@ -530,8 +530,6 @@ int cmd_fetch(int argc, const char **argv, const char *prefix)
}
refs[j] = NULL;
ref_nr = j;
- for (j = 0; refs[j]; j++)
- printf("ref: %s\n", refs[j]);
}
signal(SIGINT, unlock_pack_on_signal);