summaryrefslogtreecommitdiffstats
path: root/send-pack.c
diff options
context:
space:
mode:
authorNicolas Pitre <nico@cam.org>2006-10-31 22:58:32 +0100
committerJunio C Hamano <junkio@cox.net>2006-11-02 00:13:10 +0100
commitfa438a2eb116c71eaebecdc104a1af01ea83b9fa (patch)
treeb26a74d76fe851154bfc9a3ecbce92b3b0cc4227 /send-pack.c
parentMerge branch 'maint' (diff)
downloadgit-fa438a2eb116c71eaebecdc104a1af01ea83b9fa.tar.xz
git-fa438a2eb116c71eaebecdc104a1af01ea83b9fa.zip
make git-push a bit more verbose
Currently git-push displays progress status for the local packing of objects to send, but nothing once it starts to push it over the connection. Having progress status in that later case is especially nice when pushing lots of objects over a slow network link. Signed-off-by: Nicolas Pitre <nico@cam.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'send-pack.c')
-rw-r--r--send-pack.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/send-pack.c b/send-pack.c
index fbd792ccf4..447666665b 100644
--- a/send-pack.c
+++ b/send-pack.c
@@ -29,6 +29,7 @@ static void exec_pack_objects(void)
{
static const char *args[] = {
"pack-objects",
+ "--all-progress",
"--stdout",
NULL
};