X-Git-Url: https://git.distorted.org.uk/~mdw/tig/blobdiff_plain/19c3ac60ede476130e693ece1752a29fa4e13512..d3c345f7d3cb40c2e59137766c48ae8b91e024f4:/tig.c diff --git a/tig.c b/tig.c index 8d5f656..7172449 100644 --- a/tig.c +++ b/tig.c @@ -2311,7 +2311,7 @@ add_describe_ref(char *buf, size_t *bufpos, char *commit_id, const char *sep) char *ref = NULL; FILE *pipe; - if (!string_format(refbuf, "git describe %s", commit_id)) + if (!string_format(refbuf, "git describe %s 2>/dev/null", commit_id)) return TRUE; pipe = popen(refbuf, "r");