vote up 0 vote down star
1

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?

flag

60% accept rate
Could you clarify? Are you using two separate svn servers? – Ken Liu Sep 12 at 17:18
@Ken: Yes. I am using two different servers. – Shoan Sep 12 at 17:36

3 Answers

vote up 2 vote down

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|flag
How would I go about doing the merge and then the commit back into the svn repository? – Shoan Sep 14 at 18:08
vote up 1 vote down

Go take a look at creating patches with Git.

link|flag
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

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