Re: [PATCH] Honor git-reset -q by silencing progress updates.
From: Junio C Hamano <hidden>
Date: 2016-06-15 22:44:40
Jamis Buck [off-list ref] writes:
--Apple-Mail-10--112802933 Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit
Please do not do unnecessary S/MIME nor format=flawed. It makes reviewing and application of the patches inconvenient.
quoted hunk
When running git-reset in a non-interactive setting, the -q switch works for everything except the progress updates. This patch attempts to extend the application of -q to suppress that, too. --- builtin-reset.c | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-)diff --git a/builtin-reset.c b/builtin-reset.c index e32ddd9..3810f6d 100644 --- a/builtin-reset.c +++ b/builtin-reset.c@@ -49,13 +49,14 @@ static inline int is_merge(void)return !access(git_path("MERGE_HEAD"), F_OK); } -static int reset_index_file(const unsigned char *sha1, int is_hard_reset) +static int reset_index_file(const unsigned char *sha1, int is_hard_reset, int quiet) {