Creating a local SVN branch

后端 未结 2 1174
野的像风
野的像风 2021-02-07 09:06

I am working on an SVN repository and do not want to create a new SVN branch. Instead of that, I want to create a branch local to my machine, something which could be done easil

2条回答
  •  隐瞒了意图╮
    2021-02-07 09:55

    I'm afraid you will have to create a new branch and keep merging any changes into it. The only alternative is to simply checkout the branch, keep updating and don't commit (or keep switching prior to commits) until you are finished. You could always have two working copies if you need to work on the original branch/trunk. Nowhere near ideal, but that's the way SVN works, which is still very good given the alternatives at the time.

    I personally manage local history if that is what you are after via my IDE (Eclipse).

提交回复
热议问题