git add -e: Explicitly specify that patch should have no color
commit7f3b8c628eaea8ccbe83f605b00d629553b70b42
authorAndrew Wong <andrew.kw.w@gmail.com>
Thu, 18 Jul 2013 22:58:04 +0000 (18 18:58 -0400)
committerJunio C Hamano <gitster@pobox.com>
Fri, 19 Jul 2013 18:20:28 +0000 (19 11:20 -0700)
tree59901974c510ee564a76de1c18af7832a4298de3
parent4c7f1819b3c142ace98269a556bc929c80e7c9fd
git add -e: Explicitly specify that patch should have no color

After 4c7f1819 (make color.ui default to 'auto', 2013-06-10), the
patch file to be edited during 'git add -e' receives all the color
codes.  This is because diffopt.use_color defaults to -1, which
causes want_color to now return 'auto'.

By explicitly setting use_color to 0, we can ensure the diff output
has no color codes in it.

Signed-off-by: Andrew Wong <andrew.kw.w@gmail.com>
Acked-by: Matthieu Moy <Matthieu.Moy@imag.fr>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/add.c