mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2025-12-08 08:20:39 +01:00
6 lines
149 B
Bash
6 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
|