]> git.ipfire.org Git - thirdparty/git.git/commit - builtin/rebase.c
rebase, sequencer: remove the broken GIT_QUIET handling
authorElijah Newren <newren@gmail.com>
Sat, 15 Feb 2020 21:36:27 +0000 (21:36 +0000)
committerJunio C Hamano <gitster@pobox.com>
Sun, 16 Feb 2020 23:40:42 +0000 (15:40 -0800)
commit8a997ed132f7b8709d1752b64779566600345375
tree642b451eae4d72980115e440f69e21045848ffd3
parent7db00f0b3bc2c0bde616d45cf6e3a130e74e3024
rebase, sequencer: remove the broken GIT_QUIET handling

The GIT_QUIET environment variable was used to signal the non-am
backends that the rebase should perform quietly.  The preserve-merges
backend does not make use of the quiet flag anywhere (other than to
write out its state whenever it writes state), and this mechanism was
broken in the conversion from shell to C.  Since this environment
variable was specifically designed for scripts and the only backend that
would still use it is no longer a script, just gut this code.

A subsequent commit will fix --quiet for the interactive/merge backend
in a different way.

Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/rebase.c
sequencer.c