devoured elysium
devoured elysium

Reputation: 105037

Adding 3 projects to version control (SVN) in Eclipse

I'm currently developing an application, and I have worked in the last weeks with the following 3-project setup :

Until now, I had only the code itself under version control. I'm researching on how to include all the 3 projects under version control. I'd like to have everything under the same repository. I've created 3 folders(one for each project) under my SVN repo.

In a new workspace, I've imported each one of the projects into Eclipse. This seems, at first, to be working fine, but I'm not sure if I won't get problems later on when trying to make commits to the server and the different projects aren't in the most recent update.

I'd guess this wouldn't be a problem as they don't share any file, at all, but I'm not really sure. Is this the correct approach for the given situation? How would you handle this?

Upvotes: 0

Views: 216

Answers (1)

Zoltán Ujhelyi
Zoltán Ujhelyi

Reputation: 13858

You create a local project in Eclipse, right-click on it, and select Team/Share project...

Then a wizard will guide you, and allow putting the code into the correct folder of the svn server.

Upvotes: 1

Related Questions