Source Code for PowerStorm: Authors:
Git Instructions:
//HOW TO GRAB NEW PROJECT git clone git@github.com:powerstorm/PowerStorm.git
//HOW TO COMMIT
//adds everything to the repository git add .
//tells us what is going on (new files) git status
//commits to the local repository git commit -m 'first commit'
//commits to the remote repository git push origin master
//Unless you are on Mac OS X, which saves your password THEN TYPE IN PASSWORD:
//HOW TO PULL NEWEST CHANGES git pull git@github.com:powerstorm/PowerStorm.git master
//HOW TO STASH CHANGES git stash save "put comments here"
//HOW TO REMOVE FOLDERS git rm -r --cached "folder name" (no quotations)