git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] rebase -x: don't print "Executing:" msgs with --quiet
@ 2024-08-16  3:26 Matheus Tavares
  2024-08-16  6:20 ` Elijah Newren
                   ` (2 more replies)
  0 siblings, 3 replies; 13+ messages in thread
From: Matheus Tavares @ 2024-08-16  3:26 UTC (permalink / raw)
  To: git; +Cc: gitster, johannes.schindelin, newren, Rodrigo Siqueira

`rebase --exec` doesn't obey --quiet and end up printing a few messages
about the cmd being executed:

  git rebase HEAD~3 --quiet --exec "printf foo >/dev/null"
  Executing: printf foo >/dev/null
  Executing: printf foo >/dev/null
  Executing: printf foo >/dev/null

Let's fix that.

Suggested-by: Rodrigo Siqueira <siqueirajordao@riseup.net>
Signed-off-by: Matheus Tavares <matheus.tavb@gmail.com>
---
 sequencer.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/sequencer.c b/sequencer.c
index 0291920f0b..d5824b41c1 100644
--- a/sequencer.c
+++ b/sequencer.c
@@ -3793,12 +3793,14 @@ static int error_failed_squash(struct repository *r,
 	return error_with_patch(r, commit, subject, subject_len, opts, 1, 0);
 }
 
-static int do_exec(struct repository *r, const char *command_line)
+static int do_exec(struct repository *r, const char *command_line, int quiet)
 {
 	struct child_process cmd = CHILD_PROCESS_INIT;
 	int dirty, status;
 
-	fprintf(stderr, _("Executing: %s\n"), command_line);
+	if (!quiet) {
+		fprintf(stderr, _("Executing: %s\n"), command_line);
+	}
 	cmd.use_shell = 1;
 	strvec_push(&cmd.args, command_line);
 	strvec_push(&cmd.env, "GIT_CHERRY_PICK_HELP");
@@ -5013,7 +5015,7 @@ static int pick_commits(struct repository *r,
 			if (!opts->verbose)
 				term_clear_line();
 			*end_of_arg = '\0';
-			res = do_exec(r, arg);
+			res = do_exec(r, arg, opts->quiet);
 			*end_of_arg = saved;
 
 			if (res) {
-- 
2.46.0


^ permalink raw reply related	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2024-08-21 16:00 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-16  3:26 [PATCH] rebase -x: don't print "Executing:" msgs with --quiet Matheus Tavares
2024-08-16  6:20 ` Elijah Newren
2024-08-16  8:26 ` Patrick Steinhardt
2024-08-16 17:34   ` Junio C Hamano
2024-08-16 22:48 ` [PATCH v2] " Matheus Tavares
2024-08-17 11:22   ` Junio C Hamano
2024-08-18 13:03     ` Matheus Tavares Bernardino
2024-08-19 13:57       ` Phillip Wood
2024-08-19 20:17         ` Junio C Hamano
2024-08-20 22:23         ` Matheus Tavares Bernardino
2024-08-19 15:41       ` Junio C Hamano
2024-08-21  1:31   ` [PATCH v3] rebase --exec: respect --quiet Matheus Tavares
2024-08-21 16:00     ` Junio C Hamano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).