From: Thomas Rast Date: Tue, 2 Jun 2009 21:34:27 +0000 (+0200) Subject: add -i: do not dump patch during application X-Git-Tag: v1.6.3.2~3 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=8dc3a47c3edcee923225000e93f8052c50e5a004;p=git.git add -i: do not dump patch during application Remove a debugging print that snuck in at 7a26e65 (Revert "git-add--interactive: remove hunk coalescing", 2009-05-16). Signed-off-by: Thomas Rast Signed-off-by: Junio C Hamano --- diff --git a/git-add--interactive.perl b/git-add--interactive.perl index a06172c69..df9f23163 100755 --- a/git-add--interactive.perl +++ b/git-add--interactive.perl @@ -1317,7 +1317,6 @@ sub patch_update_file { open $fh, '| git apply --cached --recount'; for (@{$head->{TEXT}}, @result) { print $fh $_; - print STDERR $_; } if (!close $fh) { for (@{$head->{TEXT}}, @result) {