Created
March 13, 2012 22:13
-
-
Save greggles/2032114 to your computer and use it in GitHub Desktop.
checkout all the projects
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
REPOS="/Users/gknaddison/checkouts/allthestuff/newstyle/d6/themes" | |
mkdir $REPOS | |
cd $REPOS | |
while read line; do | |
echo "$line" | |
git clone git://git.drupal.org/project/${line}.git ${REPOS}/${line} | |
cd ${REPOS}/${line} && git checkout 7.x-1.x | |
done < "/Users/gknaddison/checkouts/allthestuff/allthemes.txt" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment