Re: Progress reporting (was: VCS comparison table)
From: Nicolas Pitre <hidden>
Date: 2016-08-11 19:48:27
Subsystem:
the rest · Maintainer:
Linus Torvalds
On Mon, 30 Oct 2006, Jakub Narebski wrote:
I was bitten lately by git lack of progress reporting for git-push. While it nicely reports local progress (generating data) it unfortunately lacks wget like, "curl -o" like or scp like pack upload progress reporting. And while usually push is fast, initial push of whole project to empty repository can be quite slow on low-bandwidth link (or busy network).
What about this patch?
diff --git a/builtin-pack-objects.c b/builtin-pack-objects.c
index 41e1e74..7f87ae8 100644
--- a/builtin-pack-objects.c
+++ b/builtin-pack-objects.c@@ -1524,6 +1524,10 @@ int cmd_pack_objects(int argc, const cha progress = 1; continue; } + if (!strcmp("--all-progress", arg)) { + progress = 2; + continue; + } if (!strcmp("--incremental", arg)) { incremental = 1; continue;
@@ -1641,7 +1645,7 @@ int cmd_pack_objects(int argc, const cha else { if (nr_result) prepare_pack(window, depth); - if (progress && pack_to_stdout) { + if (progress == pack_to_stdout) { /* the other end usually displays progress itself */ struct itimerval v = {{0,},}; setitimer(ITIMER_REAL, &v, NULL);
diff --git a/send-pack.c b/send-pack.c
index 0e90548..9280481 100644
--- a/send-pack.c
+++ b/send-pack.c@@ -30,6 +30,7 @@ static void exec_pack_objects(void) { static const char *args[] = { "pack-objects", + "--all-progress", "--stdout", NULL