script to pull multiple git repositories code example
Example: multiple git pull at once
find . -mindepth 1 -maxdepth 1 -type d -print -exec git -C {} pull \;
find . -mindepth 1 -maxdepth 1 -type d -print -exec git -C {} pull \;