Blankman
Blankman

Reputation: 267000

I added *ReSharper* to my gitignore, but compiling still shows _Resharper files when doing git status

I added ReSharper to my .gitignore files, but I'm guessing there were files that were being tracked previously that don't get deleted just by adding things to my gitignore file.

Is it possible to blow these files out?

Upvotes: 0

Views: 181

Answers (1)

manojlds
manojlds

Reputation: 301147

Yeah either do git rm or git rm --cached ( if you want to keep the file but just untrack it) and then commit. Only then .gitignore will take effect on those files.

Upvotes: 1

Related Questions