Skip to content

Instantly share code, notes, and snippets.

@tapvt
Created May 10, 2012 17:44
Show Gist options
  • Save tapvt/2654672 to your computer and use it in GitHub Desktop.
Save tapvt/2654672 to your computer and use it in GitHub Desktop.
pull a bunch of repos
#!/usr/bin/env bash
cd /var/www
for D in */
do
cd $D && git pull && git submodule sync && git submodule update --init --recursive && cd /var/www
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment