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 latest corrections were done in the trunk or the branch.
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 latest corrections were done in the trunk or the branch.
According to the redbook,
svn diff --old http://.../repo/branches/0.4.x --new http://.../repo/trunk/
should give you the answer you're looking for.
Replace http://.../repo/
with the actual URL of your repository. You do not need (or can use) a local checkout for this operation.