I have a .gitignore file.
One of my declarations is
**/bin/Debug/ **/obj/Debug/
But it's still picking up these files
I have a .gitignore file.
One of my declarations is
**/bin/Debug/ **/obj/Debug/
But it's still picking up these files
You need to tell git to remove the from the repository first.
git rm --cached bin/Debug
git rm --cached obj/Debug
Then commit changes.