Reputation: 2883
I'm going to check out a repository from a source that I can't commit changes back there. Then I'm gonna change the code and submit it to my own SVN server. The problem is that I want to keep my code also update-able from the original SVN server, but changes will always be saved to my own server.
Is it possible using externals? or they will try to commit changes back to original server? if you know a way, is it possible to be done using tortoiseSVN?
Upvotes: 0
Views: 147
Reputation: 1436
As you say you dont have access to the orginal svn repostiroy its going to be pretty tricky to do it. checkout SVK, it has this options for creating local branches and you would be able to do commit your changes into it.
As a better option you can try git-svn, which is the better form of the above.
Upvotes: 0
Reputation: 15734
I don't think externals are for that.
You could export the source from the other repository, then import it into yours. For future updates you could merge the source from other repository into your trunk.
Upvotes: 0