summaryrefslogtreecommitdiff
path: root/plugins/git-auto-fetch/git-auto-fetch.plugin.zsh
blob: 841f47baf638c89a93f7e0c81fb2928fdb6d694a (plain)
1
2
3
4
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