From 0837f5af78b276ac2d7a486f79f5f18334842107 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Mon, 5 Jan 2009 09:21:37 +0100 Subject: [PATCH] redirect errors from git-diff to null --- .zsh/zshrc/60_vcsprompt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.zsh/zshrc/60_vcsprompt b/.zsh/zshrc/60_vcsprompt index b5c15f1..399d344 100644 --- a/.zsh/zshrc/60_vcsprompt +++ b/.zsh/zshrc/60_vcsprompt @@ -35,12 +35,12 @@ __git_get_branch() __git_print_preprompt() { local output - output=(${(f):-"$(git diff --stat --relative)"}) + output=(${(f):-"$(git diff --stat --relative 2>/dev/null)"}) if [[ ${#output} -gt 1 ]]; then echo changes on filesystem: print "${(F)output[1,-2]}" fi - output=(${(f):-"$(git diff --cached --stat --relative)"}) + output=(${(f):-"$(git diff --cached --stat --relative 2>/dev/null)"}) if [[ ${#output} -gt 1 ]]; then echo cached/staged changes: print "${(F)output[1,-2]}" -- 2.39.2