tags:

views:

249

answers:

2

Having a bit of a problem,

Due to the source-control set-up we use, each bug/enhancement is worked on in a new branch. This is fine, but when in Eclipse, we need to set-up a new project for every branch.

Is there any way of easily setting up default preferences for a project, or importing/exporting project preferences within Eclipse?

Thanks,

Stuart

+3  A: 
VonC
A: 

The project-specific settings (contrary to the already mentioned workspace-specific settings) are stored in two hidden files in the project: .classpath and .project, which you might be able to reuse to setup your projects.

Fabian Steeg