mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 21:39:48 +01:00
5 lines
149 B
Bash
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
|