2012-01-25 27 views

回答

1

你可能需要先阅读本章内容:

$ svn cp ^/repos/trunk ^/repos/branch/featureA 

然后checkout it,无论你想:4. Branching and Merging

简单地说,你会从树干需要create a branch作为工作副本:

$ svn co ^/repos/branch/featureA featureA 

工作完成后reintegrate it back到干线:

trunk_working_copy $ svn merge --reintegrate ^/repos/branch/featureA .