Git pull multiple repositories

Oct. 11, 2013

for REPO in `ls`; do (cd "$REPO";git pull); done;

update

find . -mindepth 1 -maxdepth 1 -type d -print -exec git -C {} fetch \;

https://github.com/imjma/dotfiles/blob/master/zsh/alias.zsh#L54