Github and SVN Workflow

I am working on a project with two more developers. The problem is that 1 developer uses SVN and another developer, and I use github. Is there a way to keep everything synchronized on both sides of SVN and git?

+5
source share
4 answers

Either force the other guy to use git, or the main repository svn, and use git-svnto pull / click from / to it.

+3
source

When I had to deal with this once, I just told the other guy to recognize git and suck it. In the end, he did, and everyone was happy. I suggest: -)

+11
source

git , . svn git, .

+1
source

As of April 2010, GitHub provides a (readonly) interface for svn . If he insists on using svn and doesn’t recognize git, he must send the patches and one of the git users (or automated ones) will check them in a separate branch for this developer.

0
source

All Articles