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.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you have a checkout of the repository at hand, you can use the
^(caret, search for it in the manual) notation to reference the root of the repo like this:This works since Subversion 1.6.
If you have an older subversion or no handy checkout of the repo, you can use absolute paths, as described in the original redbook:
should give you the answer you’re looking for.
Replace
http://.../repo/with the actual URL of your repository.