Log for two different SVN paths in the same repository -
for example returning log comments 2 branches, "brancha" , "branchb" can done separately 2 separate svn commands.
svn log svn://repo/branches/brancha
svn log svn://repo/branches/branchb
is possible in subversion return logs 2 separate locations simultaneously single log via single svn command?
log: show log messages set of revision(s) and/or path(s). usage: 1. log [path][@rev] 2. log url[@rev] [path...]
svn log accepts single path, can svn log operation on parent level: svn log svn://repo/branches/ , filtering them intelligently other way (perhaps svn log -v show full repo path of changed files)
understandably, may not you're looking since return logs every branch instead of 2 you're looking for. you're better off either:
- doing 2
svn logoperations , merging them intelligently, or - considering different approach problem you're attempting solve.
Comments
Post a Comment