I’m currently working in the release process in a large project.
I simply need to know if a directory was modified in the trunk after it was tagged (so we need to make a new tag and release the new version).
I can use TortoiseSVN, CLI and Subclipse.
Tried with revision graph but found nothing useful… (or at least I was unable to use it properly)
Thank you
You need to do it in two steps:
svn infoand check last changed rev.svn log -r 470:HEADwhere470is the revision number found in step 1.