For my continuous integration builds, I want to make sure no stray files have been deposited in my git sandbox, and none of the files have been inadvertently changed.
I know about git reset --hard HEAD, and this solves part of the problem. But I guess what I want to do is delete all the untracked and ignored files. I could do it the brute force way and just do:
rm -rf *
git checkout -f
But there must be a more efficient way to do it. Any ideas?
git reset --hard HEAD+git clean -d -f? – madth3 Mar 17 '12 at 1:04