I have cloned a project that includes some .csproj
files. I don\'t need/like my local csproj
files being tracked by Git (or being brought up when c
If you have the entire project locally but forgot to add you git ignore and are now tracking some unnecessary files use this command to remove everything
git rm --cached -r .
make sure you are at the root of the project.
Then you can do the usual
git add .
git commit -m 'removed all and added with git ignore'
git push origin master
Hope this helps out people who have to make changes to their .gitignore
or forgot it all together.