There is a popular approach to not have IDE and other system-specific files in .gitignore. Rather, each user should put them to their own system-wide git ignore.
The idea is that every user has unique system/IDE with unique file and projects should not take care about each possible IDE, plugin, etc.
I use this approach in my project and had no problem with it.
There is a popular approach to not have IDE and other system-specific files in
.gitignore
. Rather, each user should put them to their own system-wide git ignore.The idea is that every user has unique system/IDE with unique file and projects should not take care about each possible IDE, plugin, etc.
I use this approach in my project and had no problem with it.