0

I have a .gitignore with:

config.ini
thingy.csv

git status shows:

Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
    modified:   .gitignore
    modified:   thingy.csv

Any idea why it's ignoring the .ini and not the .csv?

Dave Hodgkinson
  • 375
  • 4
  • 13

1 Answers1

0

Thingy.csv was committed to git. I removed it and .gitignore did the right thing.

Dave Hodgkinson
  • 375
  • 4
  • 13