R.daneel.olivaw
R.daneel.olivaw

Reputation: 2679

Can I share the same eclipse project on a SVN & a GIT repository simultaneously?

Can I share the same eclipse project on a SVN & a GIT repository simultaneously.

If yes then how ?

I am using Eclipse Indigo and have to share the same android(Java) project at 2 locations.

Unfortunately the configuration management can not be changed.

Thank you for your help..

Upvotes: 6

Views: 1144

Answers (1)

Paul Sasik
Paul Sasik

Reputation: 81429

This is actually a common issue for developers who are either moving from SVN to Git or simply want the functionality of both repositories. There are a number of blogs and articles available if you Google for using git and svn together.

You'll see all sorts of hints and tricks. The main thing to watch out for though is keeping SVN metadata files (everything in .svn folders) out of Git and vice versa.

Upvotes: 2

Related Questions