mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-25 15:20:08 +00:00
git auto fetch on change directory
This commit is contained in:
parent
57fcee0f1c
commit
a1200f5bcc
1 changed files with 5 additions and 0 deletions
5
plugins/git-auto-fetch/git-auto-fetch.plugin.zsh
Normal file
5
plugins/git-auto-fetch/git-auto-fetch.plugin.zsh
Normal file
|
@ -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
|
Loading…
Reference in a new issue