summaryrefslogtreecommitdiff
path: root/plugins/git-auto-fetch
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/git-auto-fetch')
-rw-r--r--plugins/git-auto-fetch/git-auto-fetch.plugin.zsh5
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/git-auto-fetch/git-auto-fetch.plugin.zsh b/plugins/git-auto-fetch/git-auto-fetch.plugin.zsh
new file mode 100644
index 000000000..841f47baf
--- /dev/null
+++ b/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