mirror of
https://gitee.com/mirrors/ohmyzsh.git
synced 2026-07-30 03:15:21 +08:00
6 lines
176 B
Bash
6 lines
176 B
Bash
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
|