vote up 1 vote down star
1

Whenever I switch workspaces/Eclipse installs I need to copy/redo the preferences:

  • compiler settings;
  • font sizes/families;
  • code formatter;
  • java code templates;
  • editor templates;
  • code clean-ups;

I would like to maintain these settings in an unitary way, preferrably under source control. How can I do that?


I know about 'copy settings' when creating a new workspace, but it does not keep updated copies.

flag

63% accept rate

2 Answers

vote up 1 vote down check

You could of course export/import those settings.

The other approach is to enable project specific settings for some settings.

alt text

We have a very small Git repository with those kind of files:

alt text

  • .settings/org.eclipse.jdt.core.prefs (compiler problem settings and formatter rules)
  • .settings/org.eclipse.jdt.ui.pref (cleanup rules, common code templates)

The common settings are just copied/merged in each projects .settings directory, ensuring common rules amongst all projects, whatever the workspace.

link|flag
That's a very good suggestion. Do you keep them in sync using git as well or do you have a script running some sort of git export and pulling them back? – Robert Munteanu Jun 4 at 19:39
Actually, it is still kind of manual, but git allows you to pull those files, while merging them if they already exists (which is the case when your project already has some specific settings) – VonC Jun 4 at 20:24
vote up 1 vote down

Check out Pulse Freelance Edition. It has the ability to sync workspaces (commercial).

link|flag

Your Answer

Get an OpenID
or

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