Is it possible to find out a recursive diff between two tags of a project in remote repository?
In other words if i know the location of 2 tags are https://myrepo.com/project/tags/v1 and https://myrepo.com/project/tags/v2 respectively, can i find the recursive diff between the 2 without having the code checked out on my machine?
svn diffworks with URLs, too. If you have the SVN command line tools already installed, all you have to do is to run:After this
v1tov2.diffwill contain the unified diff between the two tags.