Code

propagate --quiet to send-pack/receive-pack
authorClemens Buchacher <drizzd@aon.at>
Sat, 30 Jul 2011 12:10:14 +0000 (14:10 +0200)
committerJunio C Hamano <gitster@pobox.com>
Mon, 1 Aug 2011 01:45:41 +0000 (18:45 -0700)
commit90a6c7d443058e8ad3eb36d21f4ede99addbca61
tree73e53f9268460d8047e42c5cdd7a35a104b6ebe7
parent2579e1d2936ad4e385ef21e5c346d9853d7faa01
propagate --quiet to send-pack/receive-pack

Currently, git push --quiet produces some non-error output, e.g.:

 $ git push --quiet
 Unpacking objects: 100% (3/3), done.

Add the --quiet option to send-pack/receive-pack and pass it to
unpack-objects in the receive-pack codepath and to receive-pack in
the push codepath.

This fixes a bug reported for the fedora git package:

 https://bugzilla.redhat.com/show_bug.cgi?id=725593

Reported-by: Jesse Keating <jkeating@redhat.com>
Cc: Todd Zullinger <tmz@pobox.com>
Signed-off-by: Clemens Buchacher <drizzd@aon.at>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/git-receive-pack.txt
Documentation/git-send-pack.txt
builtin/receive-pack.c
builtin/send-pack.c
remote-curl.c
transport.c