parent
ac7dcdb21c
commit
028fdf2e99
1 changed files with 16 additions and 11 deletions
@ -1,15 +1,20 @@ |
|||||||
function git_fetch_on_chpwd { |
function git-fetch-on-chpwd { |
||||||
([[ -d .git ]] && [[ ! -f ".git/NO_AUTO_FETCH" ]] && git fetch --all &>! .git/FETCH_LOG &) |
(`git rev-parse --is-inside-work-tree 2>/dev/null` && |
||||||
|
dir=`git rev-parse --git-dir` && |
||||||
|
[[ ! -f $dir/NO_AUTO_FETCH ]] && |
||||||
|
git fetch --all &>! $dir/FETCH_LOG &) |
||||||
} |
} |
||||||
|
|
||||||
function git-auto-fetch { |
function git-auto-fetch { |
||||||
[[ ! -d .git ]] && return |
`git rev-parse --is-inside-work-tree 2>/dev/null` || return |
||||||
if [[ -f ".git/NO_AUTO_FETCH" ]]; then |
guard="`git rev-parse --git-dir`/NO_AUTO_FETCH" |
||||||
rm ".git/NO_AUTO_FETCH" && echo "${fg_bold[red]}disabled${reset_color}" |
|
||||||
else |
(rm $guard 2>/dev/null && |
||||||
touch ".git/NO_AUTO_FETCH" && echo "${fg_bold[green]}enabled${reset_color}" |
echo "${fg_bold[green]}enabled${reset_color}") || |
||||||
fi |
(touch $guard && |
||||||
|
echo "${fg_bold[red]}disabled${reset_color}") |
||||||
} |
} |
||||||
chpwd_functions+=(git_fetch_on_chpwd) |
|
||||||
git_fetch_on_chpwd |
chpwd_functions+=(git-fetch-on-chpwd) |
||||||
unset git_fetch_on_chpwd |
git-fetch-on-chpwd |
||||||
|
unset git-fetch-on-chpwd |
||||||
|
|||||||
Loading…
Reference in new issue