diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2007-09-14 03:31:11 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-09-19 03:22:30 -0700 |
commit | 133296f00cd441b5525ccc3e82ee13cbfc62d246 (patch) | |
tree | 60c89fdc1c0ce7337555de42630cd1ab672823ba /builtin-fetch-pack.c | |
parent | 4ad1eada9774a1f340beb4fdf78f1735534741bb (diff) | |
download | git-133296f00cd441b5525ccc3e82ee13cbfc62d246.tar.gz |
Remove unnecessary debugging from builtin-fetch
The older git-fetch client did not produce all of this debugging
information to stdout. Most end-users and Porcelain (e.g. StGIT,
git-gui, qgit) do not want to see these low-level details on the
console so they should be removed.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-fetch-pack.c')
-rw-r--r-- | builtin-fetch-pack.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/builtin-fetch-pack.c b/builtin-fetch-pack.c index 3b217d96f0..e77cd26719 100644 --- a/builtin-fetch-pack.c +++ b/builtin-fetch-pack.c @@ -767,8 +767,6 @@ struct ref *fetch_pack(const char *dest, int nr_heads, char **heads) st.st_mtime = 0; } - printf("connect to %s\n", dest); - pid = git_connect(fd, (char *)dest, uploadpack, verbose ? CONNECT_VERBOSE : 0); if (pid < 0) |