which eclipse project/workspace files should be added to source control?

后端 未结 3 1240
逝去的感伤
逝去的感伤 2021-01-31 20:26

I want to share an eclipse project with the rest of my team through SVN. Which files should I add to subversion? In the workspace, there are many files which IMHO are n

相关标签:
3条回答
  • 2021-01-31 20:48

    With Eclipse, you always have to import a project - there is no other way to do it - Eclipse won't detect projects if you just switch workspaces unless you've created/imported the project in that workspace before.

    You will need at a minimum:

    • .project
    • .classpath

    Personally I also add the settings folder, but its up to you:

    • .settings

    Then other users choose Import project and select the .project file.

    0 讨论(0)
  • 2021-01-31 21:01

    I would say "none of them" - I find it's easier to just store the code in subversion, then create a new project in Eclipse using the "Checkout Projects from SVN" wizard

    If you've got a workspace which isn't currently under subversion control, then the easiest method would be to create a copy of it, trim all the unwanted files, then import that into subversion. Then you can create a new workspace using the wizard to link it with SVN.

    0 讨论(0)
  • 2021-01-31 21:10

    For the workspace, consider using a 'team project set'. You can create one through the export action. This produces a file which you can email to your colleagues who then import it and all the shared projects will be checked out.

    For each project it depends on what type of project it is. If it's a Java project:

    • Exclude the JDT output directory (default is bin/, sometimes out/ is used)
    • Exclude any build artifacts that may have been generated (including those in your source folders)
    • Include .classpath and .project
    • Include your source folders
    • Include your dependencies (if you are not using an external dependency management app like maven)
    • Optionally include your JDT prefs file, depending on whether you want people to share code templates, formatting conventions etc
    • Optionally include any .launch files (saved launch configurations) but be careful as these may have platform specific entries and so won't work on different computers

    In general, if a resource is a derivative of another then it should be excluded.

    0 讨论(0)
提交回复
热议问题