oh-my-zsh/plugins/git-auto-fetch/git-auto-fetch.plugin.zsh

16 lines
413 B
Bash
Raw Normal View History

2016-09-29 16:05:49 +00:00
function git_fetch_on_chpwd {
2016-10-04 18:26:19 +00:00
([[ -d .git ]] && [[ ! -f ".git/NO_AUTO_FETCH" ]] && git fetch --all &>! .git/FETCH_LOG &)
}
function git-auto-fetch {
[[ ! -d .git ]] && return
if [[ -f ".git/NO_AUTO_FETCH" ]]; then
rm ".git/NO_AUTO_FETCH" && echo "disabled"
else
touch ".git/NO_AUTO_FETCH" && echo "enabled"
fi
2016-09-29 16:05:49 +00:00
}
2016-09-29 19:14:04 +00:00
chpwd_functions+=(git_fetch_on_chpwd)
git_fetch_on_chpwd
2016-10-04 18:26:19 +00:00
unset git_fetch_on_chpwd