Find difference between trunk and branch?

前端 未结 4 1006
不知归路
不知归路 2021-01-30 06:06

Is there a way to find the differences between the trunk and say a branch 0.4.x?

I need to create a tag - however I can\'t remember if my lates

4条回答
  •  梦谈多话
    2021-01-30 07:05

    You can use the meld tool for comparison instead of using command prompt to see the difference. It goes something like this.

    svn diff --diff-cmd='meld' --old http://.../repo/branches/0.4.x --new http://.../repo/trunk/
    

提交回复
热议问题