How can I find out all checkins in to a Relase. I need to fnid out what all changed between two tags. Each tag becomes a minor release.
I used the following cmd to find out the revisoin number for a tag
svn log <path/to/tag> -v --stop-on-copy
I got this from : SVN find revision of tag
e.g.
svn log <path/to/tag3.7.19> -v --stop-on-copy
and
svn log <path/to/tag3.7.18> -v --stop-on-copy
This gives me two revison numbers. Can I use this or something else to find out a list of all checkins.