Possible Duplicate:
Undo “git add”?
I made the mistake of running:
git add . Which added important things such as .bashrc. Even though I run:
git rm . When I run:
git push project master Everything still is added. I've even reinstalled git, but I am still pestered by this. A solution I found was to start over and remove all the files from the commit. Are there any other things I could do to remove all the files from the commit?
rm -rf) your repository folder and cloning it again (assuming it's a clone of a remote repo).