kapluni of Gamalon
11/6/2018 - 8:47 PM

Useful git commands

do stuff with git

# do a git pull on all repositories in the current directory
for a in `ls -1`; do pushd $a && git pull ||  popd; done;