gc: save log from daemonized gc --auto and print it next time
commit329e6e8794c347d3da92144f88ad838945508ac6
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>
Sat, 19 Sep 2015 05:13:23 +0000 (19 12:13 +0700)
committerJunio C Hamano <gitster@pobox.com>
Mon, 21 Sep 2015 16:43:30 +0000 (21 09:43 -0700)
tree189fc697feb49cbb3a8ad9039e4d0872157a9198
parentecad27cf98c391d5cfdc26ce0e442e02347baad0
gc: save log from daemonized gc --auto and print it next time

While commit 9f673f9 (gc: config option for running --auto in
background - 2014-02-08) helps reduce some complaints about 'gc
--auto' hogging the terminal, it creates another set of problems.

The latest in this set is, as the result of daemonizing, stderr is
closed and all warnings are lost. This warning at the end of cmd_gc()
is particularly important because it tells the user how to avoid "gc
--auto" running repeatedly. Because stderr is closed, the user does
not know, naturally they complain about 'gc --auto' wasting CPU.

Daemonized gc now saves stderr to $GIT_DIR/gc.log. Following gc --auto
will not run and gc.log printed out until the user removes gc.log.

Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/gc.c