- how to get my git repo to a server downloaded state without any of my changes
- $ cd (project-directory)
- $ git init
- $ (add some files)
- $ git add .
- $ git commit -m 'Initial commit'
- git reset --hard HEAD
- make clobber
- repo forall -c git reset --hard
- repo sync -j8