Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

1 Answer

up vote 35 down vote accepted

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.