浏览代码

git auto fetch on change directory

slavaGanzin 8 年之前
父节点
当前提交
a1200f5bcc
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      plugins/git-auto-fetch/git-auto-fetch.plugin.zsh

+ 5 - 0
plugins/git-auto-fetch/git-auto-fetch.plugin.zsh

@@ -0,0 +1,5 @@
+function git_fetch_on_chpwd {
+  ([[ -d .git ]] && git fetch --all >! ./.git/FETCH_LOG &)
+}
+chpwd_functions=(${chpwd_functions[@]} "git_fetch_on_chpwd")
+unset git_fetch_on_cpwd