git auto fetch on change directory

pull/5477/head
slavaGanzin 2016-09-29 19:05:49 +03:00
parent 57fcee0f1c
commit a1200f5bcc
1 changed files with 5 additions and 0 deletions

View 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