[PROTIP][NOTED] Deleting All Previous Commits in Git
http://stackoverflow.com/questions/9683279/make-the-current-commit-the-only-initial-commit-in-a-git-repository
git checkout --orphan newBranch
git add -A # Add all files and commit them
git commit
git branch -D master # Deletes the master branch
git branch -m master # Rename the current branch to master
IMSIDE20F0DDB0EF2930C8DC19E5449A7291573495E3D