diff options
Diffstat (limited to 'zshfunc/vcs-info/VCS_INFO_git_detect')
-rw-r--r-- | zshfunc/vcs-info/VCS_INFO_git_detect | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/zshfunc/vcs-info/VCS_INFO_git_detect b/zshfunc/vcs-info/VCS_INFO_git_detect new file mode 100644 index 0000000..a57b276 --- /dev/null +++ b/zshfunc/vcs-info/VCS_INFO_git_detect @@ -0,0 +1,9 @@ +VCS_INFO_git_detect() { #{{{ + if VCS_INFO_check_com git && git rev-parse --is-inside-work-tree &> /dev/null ; then + vcs_comm[gitdir]="$(git rev-parse --git-dir 2> /dev/null)" || return 1 + if [[ -d ${vcs_comm[gitdir]}/svn ]] ; then vcs_comm[overwrite_name]='git-svn' + elif [[ -d ${vcs_comm[gitdir]}/refs/remotes/p4 ]] ; then vcs_comm[overwrite_name]='git-p4' ; fi + return 0 + fi + return 1 +} |