Unlike Netbeans, in Jetbrains IDEs, the setting files related to user and team are mixed in the same folder that make it a tricky when you need to push them to git.
There is a number of sample git ignore files for these IDEs and https://intellij-support.jetbrains.com/hc/articles/206544839 page on git site.
However after using them for a months we figure out that it is safer and actually more convenient to do the reverse. I mean ignoring all .idea
files and adding only team related settings explicitly. (instead of adding all and ignoring some).
The main thing that can be shared among developers is code style configs. So using IDE auto-reformatting option all team will follow a consistent style.
Beside that, the question is that which other files are recommenced to be included not ignored? Why?
answer: I came up with this: https://github.com/salarmehr/idea-gitignore
I prefer not to check in the
.idea
folder or.iml
files at all..editorconfig
file, the JetBrains IDEs support these now.maven
orgradle
build files to carry specific setups.After some investigation I came up with the following
.idea/.gitignore
file:Above files should practically be identical for all team members.
answer: I came up with this: https://github.com/salarmehr/idea-gitignore
I use both IDEA and Eclipse, but not Netbeans. I never commit any project files but make sure that I have a Maven build as the leading tool, then I can easily import the Maven project into any IDE with Maven support and also refresh from Maven once I change it. For Eclipse and IDEA this works beautifully.
My .gitignore file looks like this for all of my projects:
Plus other, project-specific files or directories.
It's recommended not to commit all the
.idea
folder because it's for configurations. Like the*.iml
file.If I use Netbeans instead of Intellij, I don't want these config files. It is useless and maybe a little dangerous for conflicts.
Jetbrains has some official guidance on which files should not be checked in, and which files should probably not be checked in, depending on your usage. According to that page, you should check in all files in the
.idea
directory except:workspace.xml
tasks.xml
And probably also:
dictionary
subdirectoryWhile the particular answer may depend on your team's particular practices, in my experience, following that guidance generally results in correct separation of user settings and shared project configuration.
Some examples of files that should be shared, according to this guidance:
ant.xml
, which, if you use Ant to build your project, points IDEA to your build files and configures properties that should be used to build.vcs.xml
, which specifies the Version Control configuration for your projectencodings.xml
, which specifies how IDEA should treat the text files in your projectmodules.xml
, which points IDEA to each of your project's module configuration files, which should also be shared in your VCS.runConfigurations
subdirectory, which tells IDEA what it needs to do to run your applicationcodeStyleSettings.xml
, which, as you have alluded to, puts your whole team on the same page in terms of automatic code formattingDepending on your team's usage, there may be more or less, but those are some of the biggest examples.