Skip to content

Instantly share code, notes, and snippets.

@jeremyckahn
Created October 17, 2010 18:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeremyckahn/631118 to your computer and use it in GitHub Desktop.
Save jeremyckahn/631118 to your computer and use it in GitHub Desktop.
BASH script to download and install all of the JavaScriptMVC framework from Github.
# Download script...
# Does not yet account for individual user forks, but at least gets all the code onto your machine.
git clone git@github.com:jupiterjs/javascriptmvc.git
cd javascriptmvc
git submodule init
git submodule update
git submodule foreach git checkout master
echo "All done! Welcome to JavaScriptMVC!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment