开发者

Local branches in subversion

开发者 https://www.devze.com 2023-03-30 12:41 出处:网络
Do you have advice on how one could work on a local branch while doing SVN development? I\'m working on a project where I can\'t have a branch in the central repository, but I\'d like to be able to me

Do you have advice on how one could work on a local branch while doing SVN development? I'm working on a project where I can't have a branch in the central repository, but I'd like to be able to merge the contents from trunk every now and then.

Many website recommend using git, but I'm not so used to git, and I'm not really used to that. Another possib开发者_运维百科ility would be to work on a clean checkout, and never commit; but that would mean duplicating many unmodified files.

Any idea regarding local branches in svn?

Thanks!


SVN is centralised and thus it doesn't know local branches.


Tis time to learn git. Try git-svn. (Or you could use another SVN-DVCS bridge)


This workflow in SVN involves you having a second SVN repository where you work.

You move changes to and from the main repository using patches.

It is less than ideal these days.

Tis time to learn Hg. ;)


A less than optimal solution, which doesn't involve git, is to make changes to a fresh local checkout, without committing them, and consider this checkout as a local branch. One can then merge from trunk through svn update, and commit to trunk through svn commit when their work on the branch is completed.

This solution doesn't let one keep a history of the branch, though.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号