From SVN to GIT and vice versa

We are working on a project where we should use Subversion as our version control system. We like it all, but on holidays we would like to leave the city to focus on development. The problem is that there is a high probability of not having access to the Internet, where we are going. Since we still want to maintain code history, I thought there was a way to export our current Subversion history to a git repository, and then export our git history to an existing Subversion repository (this repo already has a history on it).

Is there any way to do this?

Thanks!

+7
git svn
source share
3 answers

There is a bunch of textbooks in this. Check:

+2
source share

Git's first rule: if you can think about it, Git can do it. Take a look at git-svn .

+7
source share

If you just want to bring your own repository with you, then why not locally place the repository (or copy) on one of your computers that you take with you (assuming that you are going together) - then you only need to have a local network.

But perhaps I misunderstood your tasks.

0
source share

All Articles