up vote 1 down vote favorite
1
share [g+] share [fb]

I would like to be able to review code checked into the internal subversion repository before pushing those changes to the remote subversion server. How can I use git to stage the development subversion for review?

I have already fetched the internal subversion into git on my machine. How do I now push the changes into the remote subversion server?

Update: I am looking for a solution that allows me to pull from one subversion repository, review the code and push into a different subversion repository. Is this possible with git-svn?

link|improve this question

Could you clarify? Are you using two separate svn servers? – Ken Liu Sep 12 '09 at 17:18
@Ken: Yes. I am using two different servers. – Shoan Sep 12 '09 at 17:36
feedback

3 Answers

up vote 3 down vote accepted

From the git-svn manpage:

--svn-remote <remote name>

Specify the [svn-remote "<remote name>"] section to use, 
this allows multiple SVN repositories to be tracked. Default: "svn"

So add your second SVN server to your .git/config as a new [svn-remote] stanza. You can then use this option to reference it.

link|improve this answer
How would I go about doing the merge and then the commit back into the svn repository? – Shoan Sep 14 '09 at 18:08
feedback

Go take a look at creating patches with Git.

link|improve this answer
feedback

Why not just have one SVN repository with a development branch and a "blessed" branch where you merge the approved revisions to?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.