summaryrefslogtreecommitdiff
path: root/send-pack.c
diff options
context:
space:
mode:
authorNicolas Pitre <nico@cam.org>2006-10-31 21:58:32 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-11-01 23:13:10 (GMT)
commitfa438a2eb116c71eaebecdc104a1af01ea83b9fa (patch)
treeb26a74d76fe851154bfc9a3ecbce92b3b0cc4227 /send-pack.c
parent7854e526ff170846aef4ae3c71588c98ed9176d0 (diff)
downloadgit-fa438a2eb116c71eaebecdc104a1af01ea83b9fa.zip
git-fa438a2eb116c71eaebecdc104a1af01ea83b9fa.tar.gz
git-fa438a2eb116c71eaebecdc104a1af01ea83b9fa.tar.bz2
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 fbd792c..4476666 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
};