Reputation: 1594
For example returning the log comments for two branches, "BranchA" and "BranchB" can be done separately with two separate SVN commands.
svn log svn://REPO/branches/BranchA
svn log svn://REPO/branches/BranchB
Is it possible in Subversion to return the logs for two separate locations simultaneously as a single log via a single SVN command?
Upvotes: 0
Views: 263
Reputation: 526
log: Show the log messages for a set of revision(s) and/or path(s).
usage: 1. log [PATH][@REV]
2. log URL[@REV] [PATH...]
svn log
only accepts a single path, but you can do an svn log operation on the parent level:
svn log svn://REPO/branches/
and filtering them intelligently some other way (perhaps with svn log -v
which will show the full repo path of changed files)
Understandably, this may not be what you're actually looking for since it will return the logs for every branch instead of the two you're looking for. You're probably better off either:
svn log
operations and merging them intelligently, orUpvotes: 1