vote up 3 vote down star

I checked out a project from SVN server A, but I need to commit my changes back to server B - the repositories on both servers have identical structures. How can I do this with Tortoise SVN?

Thanks, Don

flag

40% accept rate

4 Answers

vote up 8 vote down check

I think the Relocate option is for this. Haven't used it till now, so I can't vouch.

Edit: Reading some more (http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-dug-relocate.html) it seems it's not what you need. It would work if it's the same repository with the address changed, but not if it's a different repository.

You could get a fresh copy from repository B, get a patch from the changes that you made and apply it on the fresh copy. Then you can commit.

link|flag
1  
The relocate option worked perfectly – Don Aug 5 at 14:28
The subversion documentation says that you should not use relocate in this situation (see the link posted by rslite). Maybe you are lucky that it worked... – Stefan Egli Aug 6 at 10:12
vote up 1 vote down

You may be able to do what you need by using svn import

link|flag
vote up 0 vote down

Do an:

svn export

on "Server A". You'll get the codebase but none of the .svn files. Then go to "Server B" and check the files in as you normally would. I'm not sure if Tortoise SVN has the ability to do an export, so you might have to use the command line for it.

link|flag
vote up -1 vote down

Hi Don,

Look here: http://wsmoak.net/subversion/demo/tsvn-checkout.html

You can set the correct URL repository when you checkout.

link|flag
The project is already checked out – Don Aug 5 at 13:55
Sorry, you´re right. I misunderstood. – Evandro Aug 5 at 14:01

Your Answer

Get an OpenID
or

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