Merge two branches using tortoise SVN

前端 未结 2 1868
余生分开走
余生分开走 2020-12-28 14:51

I have a branch which I am doing the changes seperately. Other team mates doing the changes in trunk. Scenario is, now I want to give a release including trunk updates + my

相关标签:
2条回答
  • 2020-12-28 15:17
    Perform fresh checkout of your repository 
    Precondition:( Suppose your repository name: Team )
    1. You have trunk( Main Dev )
    2. You have branch ( Your changes )
    3. Create say "newbranch" from trunk.[ TortoiseSVN->Branch/tag][ Picture1 }Note:Select Head revision
    

    enter image description here

    4. Perform svn Update inside "Team"->So newBranch is updated.[picture2]
    

    enter image description here

    5. Now, select newbranch and merge[Tortoisesvn->Merge][Picture3]
    

    enter image description here

    6. Select default "Merge a range of revision", to select revisions which you only intrested to merge.[[Picture4]
    

    enter image description here

    7. Click, showlog to select required revisions you intrested on[picture5]
    

    enter image description here

     Finaly merge is completed[picture6]
    

    enter image description here

    **Note: If Conflicts comes across, then merge conflict revisions manually.

    0 讨论(0)
  • 2020-12-28 15:23

    I would create a new branch from trunk and than merge your branch in the new branch via Merge a range of revisions. Because the new branch is newer all should work fine.

    0 讨论(0)
提交回复
热议问题