cheziHoyzer
cheziHoyzer

Reputation: 5041

SVN - Get all the commit messages between given two revisions and folder URL

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

Answers (2)

choroba
choroba

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

Smila
Smila

Reputation: 1140

check this option

svn log --verbose -r258:106 https://repoAddress/trunk

Upvotes: 1

Related Questions