SVN branch compare

tekumara picture tekumara · Nov 24, 2009 · Viewed 59k times · Source

How do I compare one branch with another? I want to compare a branch with the latest revision in trunk.

Answer

Edmund picture Edmund · Nov 24, 2009

You could start with:

svn diff http://REPOS/trunk http://REPOS/branches/B

(Where http://REPOS is your repository path including the parents of trunk and branches.)

This will print a large quantity of text, including all the textual changes but not the binary changes except to say where and when they occurred.