I know that a diff between two tags lists the 'files' which have been changed between those two tags by the following method.
svn diff tag1 tag2 |grep Index:
Is there any property in Subversion or some technique to find out revision numbers which caused those files to change (i.e differences between tag1 version of the file and tag2 version of the same file)?
Thx Vandana
Use just svn diff'to display local modifications in a working copy. Display the changes made to TARGET s as they are seen in REV between two revisions. TARGET s may be all working copy paths or all URL s.
Go to the repository browser (<right click>/TortoiseSVN/Repo-browser/<enter URL>). Open right click menu on branch B, select 'Mark for comparison'. Then open right click menu on branch A, select 'Compare URLs' or 'Show differences as unified diff'.
The diff command is used to compare different revisions of files. The default action is to compare your working files with the revisions they were based on, and report any differences that are found. If any file names are given, only those files are compared.
The svn diff command reveals the differences between your working copy and the copy in the master SVN repository.
with svn version 1.9.7, although my tags are not in the same branch, it works !
svn diff --old=URL_TAG_1 --new=URL_TAG_2
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With