Find difference between trunk and branch?

前端 未结 4 995
不知归路
不知归路 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 06:53

    If you just want to diff against the current branch, you can just use a dot .

    svn switch ^/branches/branchName
    svn diff . ^/trunk
    

提交回复
热议问题