flyer
flyer

Reputation: 9806

git server synchronises with svn server

I have a git server and a svn server. I want to synchronize code committed on either server to another server, e.g., I commit code to git server, and then I can also get the same code from a svn server that synchronizes the code from git server.

I find that git-svn can commit code that is controlled by git to a svn server, but it seems no help concerning my problem.

Upvotes: 2

Views: 72

Answers (1)

CharlesB
CharlesB

Reputation: 90276

Googling this and found git-svn-mirror:

A command-line tool that automates the task of creating a GIT mirror for a SVN repo, and keeping it up-to-date.

Upvotes: 3

Related Questions