Skip to content

Instantly share code, notes, and snippets.

@ecowden
Created April 11, 2013 01:20
Show Gist options
  • Save ecowden/5359900 to your computer and use it in GitHub Desktop.
Save ecowden/5359900 to your computer and use it in GitHub Desktop.
Clone the Angular.js project from GitHub into a directory called 'wwt-rocks'. If the directory already exists, delete it first. Bash implementation.
DIR="wwt-rocks"
if [ -d $DIR ]; then
rm -Rf $DIR
fi
git clone git://github.com/angular/angular.js.git $DIR
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment