From bc02ff85afe6c89ea38a2bba765504276dc3b113 Mon Sep 17 00:00:00 2001 From: Jonas Fonseca Date: Mon, 31 Mar 2008 13:03:45 +0200 Subject: [PATCH] stage: disable whitespace warnings from git apply when staging updates --- tig.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tig.c b/tig.c index 5c7be40..466fc2d 100644 --- a/tig.c +++ b/tig.c @@ -4470,7 +4470,7 @@ stage_update_chunk(struct view *view, struct line *line) return FALSE; if (!string_format_from(cmd, &cmdsize, - "git apply --cached %s - && " + "git apply --whitespace=nowarn --cached %s - && " "git update-index -q --unmerged --refresh 2>/dev/null", stage_line_type == LINE_STAT_STAGED ? "-R" : "")) return FALSE; -- 2.11.0