Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

git

svn

git-svn

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..

like image 535
R.daneel.olivaw Avatar asked Dec 18 '11 14:12

R.daneel.olivaw


1 Answers

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.

like image 182
Paul Sasik Avatar answered Oct 16 '22 20:10

Paul Sasik