How to merge branch back to trunk in SVN with all commit history?

后端 未结 5 582
长情又很酷
长情又很酷 2021-01-30 17:32

How to merge branch back to trunk in SVN with all commit history? I know in Git I can use

merge -squash

Is there any equivalent command in SVN?

5条回答
  •  故里飘歌
    2021-01-30 18:28

    You can save each changeset as a diff and then commit each one atop the trunk. This is commonly called "transplanting", and there are various tools to do this automatically.

提交回复
热议问题