0

I have a .gitignore file.

One of my declarations is

**/bin/Debug/ **/obj/Debug/

But it's still picking up these files

enter image description here

1 Answers1

1

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.

EncryptedWatermelon
  • 4,788
  • 1
  • 12
  • 28
  • That's actually not working. It was initially then after rebooting my machine, it stopped. –  Mar 25 '19 at 18:15