X-Git-Url: https://git.madduck.net/etc/zsh.git/blobdiff_plain/b100e099f62f7ef233b2b8c74b060d0d586f4b97..b3f79d5a2e1671358a5972d9529316be43c55281:/.zsh/zshrc/60_vcsprompt?ds=inline 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