Visual Studio Tips and Tricks
Jul 1, 2021
Remove obj and bin files
After adding .gitIgnore, follow the below command
You shouldn’t have to delete anything. After you added the .gitignore file, run this command to clear the cache, then stage and commit again:
git rm -r . --cached