1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-25 01:10:46 +00:00
ohmyzsh/plugins/git-auto-fetch/git-auto-fetch.plugin.zsh

6 lines
176 B
Bash
Raw Normal View History

2016-09-29 16:05:49 +00:00
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