-1

I am using EF Core. Files with .dll and .suo extensions are constantly coming up when committing on Visual Studio. I specified in gitignore that it should ignore them. I guess I missed something.

Gitignore;

enter image description here

enter image description here

enter image description here

enter image description here

Comits coming out;

enter image description here

Burcu
  • 11
  • 2
  • Eeeehm, and what exactly is your problem? And what does that have to do with programming at all? It's just about ignoring files from git. Or do you want to know why and where those files are created? – MakePeaceGreatAgain Nov 25 '21 at 12:59
  • https://stackoverflow.com/a/16183043/17034 – Hans Passant Nov 25 '21 at 13:03
  • The entire `.vs` folder should be excluded. The problem you may also have is that if you only added these files to the gitignore file afterwards, then they are already included in your repo and you need to remove them first. – DavidG Nov 25 '21 at 13:04
  • Might you please [edit] your question to include your `.gitignore` file, code, error messages and other textual content as **text** rather than as a screen shot? It's necessary not to use images for this purpose, see [Why not upload images of code/errors when asking a question?](https://meta.stackoverflow.com/a/285557) and [Discourage screenshots of code and/or errors](https://meta.stackoverflow.com/q/303812) for why. Questions whose textual content is only available in external links (including images) can get closed as needing debugging details. See [ask] for why. – dbc Nov 29 '21 at 04:02

1 Answers1

0

It looks like you already have been pushed that folder to the git repo. You should remove it with git rm -r --cached .vs.

cemahseri
  • 91
  • 6