Home > Mobile >  How to get rid of 'Unversioned Files' in Intellij
How to get rid of 'Unversioned Files' in Intellij

Time:12-14

Is it possible to hide/get rid of 'Unversioned Files' in a default view of 'Local Changes'?enter image description here

I found 'Show unversioned files' checkbox in Settings -> Version Control -> Commit but there is no difference.

CodePudding user response:

You should add files to the .gitignore file you don't want to add them to the git history.

IntelliJ provides a context action for it enter image description here

  • Related