Vanilla Web Project Template Purpose - To establish a reusable template to create web projects for students to complete How to use Clone this repository into your ~/dev directory. From the terminal, cd into the root of the newly cloned directory. To unlink this project from its git source, execute the following command rm -rf .git Create a new git repository by clicking here. From the root directory of the newly cloned project, execute the following commands git init git add . git commit -m "first commit" git remote add origin https://github.com/USERNAME-OF-REPOSITORY-OWNER/NAME-OF-REPOSITORY.git git push -u origin master