git-auto-fetch.plugin.zsh 574 Bytes
Newer Older
slavaGanzin's avatar
slavaGanzin committed
1
2
3
4
5
function git-fetch-on-chpwd {
  (`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 &)
slavaGanzin's avatar
slavaGanzin committed
6
7
8
}

function git-auto-fetch {
slavaGanzin's avatar
slavaGanzin committed
9
10
11
12
13
14
15
  `git rev-parse --is-inside-work-tree 2>/dev/null` || return
  guard="`git rev-parse --git-dir`/NO_AUTO_FETCH"

  (rm $guard 2>/dev/null &&
    echo "${fg_bold[green]}enabled${reset_color}") ||
  (touch $guard &&
    echo "${fg_bold[red]}disabled${reset_color}")
16
}
slavaGanzin's avatar
slavaGanzin committed
17
18
19
20

chpwd_functions+=(git-fetch-on-chpwd)
git-fetch-on-chpwd
unset git-fetch-on-chpwd