summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: cbbf2d1)
raw | patch | inline | side by side (parent: cbbf2d1)
author | Jonas Fonseca <fonseca@diku.dk> | |
Tue, 22 Aug 2006 22:12:57 +0000 (00:12 +0200) | ||
committer | Jonas Fonseca Madsen <fonseca@ask.diku.dk> | |
Tue, 22 Aug 2006 22:12:57 +0000 (00:12 +0200) |
When quickly scrolling through commits with the split diff view, they was
spewing 'Broken pipe' messages onto the screen.
spewing 'Broken pipe' messages onto the screen.
tig.c | patch | blob | history |
index f110dae0ec4e493777b5aa9d13d5919f9d85aa55..b2e1a36057fba5cb067edfc519872c199f30aefc 100644 (file)
--- a/tig.c
+++ b/tig.c
"git ls-remote . 2>/dev/null"
#define TIG_DIFF_CMD \
- "git show --patch-with-stat --find-copies-harder -B -C %s"
+ "git show --patch-with-stat --find-copies-harder -B -C %s 2>/dev/null"
#define TIG_LOG_CMD \
- "git log --cc --stat -n100 %s"
+ "git log --cc --stat -n100 %s 2>/dev/null"
#define TIG_MAIN_CMD \
- "git log --topo-order --pretty=raw %s"
+ "git log --topo-order --pretty=raw %s 2>/dev/null"
/* XXX: Needs to be defined to the empty string. */
#define TIG_HELP_CMD ""