aboutsummaryrefslogtreecommitdiff
path: root/builtin-send-pack.c
diff options
context:
space:
mode:
authorNicolas Pitre <nico@fluxnic.net>2009-11-23 12:43:50 -0500
committerJunio C Hamano <gitster@pobox.com>2009-11-23 21:33:09 -0800
commit4f366275189c06ec26c01ee5ace2f3831b2aa46a (patch)
tree7e31f673ec8a7a490628aa19860e9a4d51b1e30c /builtin-send-pack.c
parent0b624b4ceee63ce45135cdbb80f2807c20b48646 (diff)
downloadgit-4f366275189c06ec26c01ee5ace2f3831b2aa46a.tar.gz
git-4f366275189c06ec26c01ee5ace2f3831b2aa46a.tar.xz
pack-objects: split implications of --all-progress from progress activation
Currently the --all-progress flag is used to use force progress display during the writing object phase even if output goes to stdout which is primarily the case during a push operation. This has the unfortunate side effect of forcing progress display even if stderr is not a terminal. Let's introduce the --all-progress-implied argument which has the same intent except for actually forcing the activation of any progress display. With this, progress display will be automatically inhibited whenever stderr is not a terminal, or full progress display will be included otherwise. This should let people use 'git push' within a cron job without filling their logs with useless percentage displays. Signed-off-by: Nicolas Pitre <nico@fluxnic.net> Tested-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-send-pack.c')
-rw-r--r--builtin-send-pack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-send-pack.c b/builtin-send-pack.c
index 37e528e28..2c4eaae68 100644
--- a/builtin-send-pack.c
+++ b/builtin-send-pack.c
@@ -38,7 +38,7 @@ static int pack_objects(int fd, struct ref *refs, struct extra_have_objects *ext
*/
const char *argv[] = {
"pack-objects",
- "--all-progress",
+ "--all-progress-implied",
"--revs",
"--stdout",
NULL,