]> git.ipfire.org Git - thirdparty/git.git/commit - apply.h
apply: make it possible to silently apply
authorChristian Couder <christian.couder@gmail.com>
Sun, 4 Sep 2016 20:18:25 +0000 (22:18 +0200)
committerJunio C Hamano <gitster@pobox.com>
Wed, 7 Sep 2016 19:29:53 +0000 (12:29 -0700)
commita46160d27ebdcd609aeae60b6163548af337d280
treeb0a16824d7049e0298993212dccab0791cf13dc3
parent90875eca5a0b227e6a1be3ccece0a3da5e72017f
apply: make it possible to silently apply

This changes 'int apply_verbosely' into 'enum apply_verbosity', and
changes the possible values of the variable from a bool to
a tristate.

The previous 'false' state is changed into 'verbosity_normal'.
The previous 'true' state is changed into 'verbosity_verbose'.

The new added state is 'verbosity_silent'. It should prevent
anything to be printed on both stderr and stdout.

This is needed because `git am` wants to first call apply
functionality silently, if it can then fall back on 3-way merge
in case of error.

Printing on stdout, and calls to warning() or error() are not
taken care of in this patch, as that will be done in following
patches.

Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
apply.c
apply.h
builtin/apply.c