Reputation: 5041
I'm looking for a SVN command (or some bash file) that get two different revision numbers and URL to a folder and returns all the commit messages between those revision.
Example:
$svn getLog 9558 9583 http://someurl/projects/myProject/trunk
Upvotes: 0
Views: 117
Reputation: 241918
Use the -r
option of svn log
with a from:to
range:
svn log -r 9558:9583 http://someurl/projects/myProject/trunk
Upvotes: 1
Reputation: 1140
check this option
svn log --verbose -r258:106 https://repoAddress/trunk
Upvotes: 1