diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2007-09-16 02:32:17 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-09-19 03:22:31 -0700 |
commit | f38395905b3d49bd68e0c01ca2310bf3387e1063 (patch) | |
tree | 76601af66394c3d8993ef0eb089a637a140e9f07 /builtin-fetch.c | |
parent | Don't configure remote "." to fetch everything to itself (diff) | |
download | tgif-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.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/builtin-fetch.c b/builtin-fetch.c index d9272edae9..20926e0543 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); |