git reset --hard head
* remove any untracked files/directories that aren't known (known like listed in a .gitignore file)
git clean -df
you can also use this to see what would have been done
git clean -dn
===== External Links =====
* [[http://learn.github.com/p/undoing.html|undoing]]