ohmyzsh/plugins/git-auto-fetch/git-auto-fetch.plugin.zsh
2016-10-04 21:34:29 +03:00

5 lines
149 B
Bash

function git_fetch_on_chpwd {
([[ -d .git ]] && git fetch --all &>! ./.git/FETCH_LOG &)
}
chpwd_functions+=(git_fetch_on_chpwd)
git_fetch_on_chpwd