Pycharm asks me if I want to add .idea \ vcs.xml to Git

When using Pycharm, I got a popup from nowhere asking me if I want to add this file to Git and note that I could do it manually later if I want. What is this file, and why is this recommendation given to me?

+6
source share
2 answers

All specific project parameters for the project are stored in the .idea folder.

During operation, a new file ( vcs.xml) was created and, therefore, it gives you the ability to add it to Git. Files in .idea/usually should not reach Git, and it is usually better to add it to the file .gitignore.

+4
source

JetBrains, git.

, .gitignore , .iws, workspace.xml tasks.xml. gitignore IDE JetBrains.

+3

All Articles