From: martin f. krafft Date: Wed, 14 May 2008 21:04:08 +0000 (+0100) Subject: also assume git repo type if GIT_DIR is set X-Git-Url: https://git.madduck.net/etc/zsh.git/commitdiff_plain/b3f79d5a2e1671358a5972d9529316be43c55281?pf=etc also assume git repo type if GIT_DIR is set --- diff --git a/.zsh/zshrc/60_vcsprompt b/.zsh/zshrc/60_vcsprompt index d72e205..4cc18a3 100644 --- a/.zsh/zshrc/60_vcsprompt +++ b/.zsh/zshrc/60_vcsprompt @@ -70,6 +70,7 @@ __vcs_get_repo_type() local dir while true; do [ -d ${dir}.git ] && echo git && break + [ -d "$GIT_DIR" ] && echo git && break [ -d ${dir}.bzr ] && echo bzr && break [ -d ${dir}.hg ] && echo hg && break [ "$(readlink -f ${dir:-.})" = / ] && echo NONE && break