My initial commit contained some log files. I\'ve added *log to my .gitignore, and now I want to remove the log files from my repository.
*log
.gitignore
To remove an entire folder from the repo (like Resharper files), do this:
git rm -r --cached folderName
I had committed some resharper files, and did not want those to persist for other project users.