Search code examples
eclipseconfigurationeclipse-pdt

How to share Eclipse configuration over different workspaces


I'm using Eclipse (PDT) as primary IDE on different machines. (like at home, laptop, in office, etc.). How could I share the Eclipse and project configuration pragmatically between multiple computers? Should I version control them, or is there any easier way to do this?

How do you ensure to use the same good and old even so up to date config all of your computers?


Solution

  • Sharing eclipse specific settings across workspaces:

    1. Go to ${old_workspace}/.metadata/.plugins/org.eclipse.core.runtime/.settings
    2. Copy everything under the above directory to ${new_workspace}/.metadata/.plugins/org.eclipse.core.runtime/.settings

    This is going to make sure that the ${new_workspace} is having the same configuration as the ${old_workspace}

    Update in case of any issues.