Issue
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:
- Go to
${old_workspace}/.metadata/.plugins/org.eclipse.core.runtime/.settings
- 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}
Hope this helps. Update in case of any issues.
Answered By - peakit
Answer Checked By - Clifford M. (JavaFixing Volunteer)