Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

RubyMine generates some files in the .idea directory. In one of my projects I see:

  • *project_name*.iml
  • encodings.xml
  • misc.xml
  • modules.xml
  • vcs.xml
  • workspace.xml

Which should I commit to the version control system and which shouldn't?

share|improve this question

2 Answers

up vote 10 down vote accepted

As stated on http://www.jetbrains.net/devnet/docs/DOC-1192:

RubyMine stores project configuration files under .idea directory that is auto-created in project root folder.

For better collaboration between project team you should put under the version control all the files under .idea directory in the project root except the workspace.xml and tasks.xml files which store user specific settings.

share|improve this answer
Eugene, you may want to say that you work at JetBrains in your bio, it'd make your answers more credible ;) – J. Pablo Fernández Apr 21 '10 at 13:59

For RubyMine, it may be preferable not to share the project files at all, because much more of the stuff is configured automatically based on your local settings (like the gems that you have installed locally).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.