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:

  1. doing 2 svn log operations , merging them intelligently, or
  2. considering different approach problem you're attempting solve.

Comments

Popular posts from this blog

authentication - Mongodb revoke acccess to connect test database -

r - Update two sets of radiobuttons reactively - shiny -

ios - Realm over CoreData should I use NSFetchedResultController or a Dictionary? -