##// END OF EJS Templates
graphlog: support changeset identifiers in --branch
Patrick Mezard -
r16407:49ef1c38 default
parent child Browse files
Show More
@@ -306,6 +306,7 b' def _makelogrevset(repo, pats, opts, rev'
306 # branch and only_branch are really aliases and must be handled at
306 # branch and only_branch are really aliases and must be handled at
307 # the same time
307 # the same time
308 opts['branch'] = opts.get('branch', []) + opts.get('only_branch', [])
308 opts['branch'] = opts.get('branch', []) + opts.get('only_branch', [])
309 opts['branch'] = [repo.lookupbranch(b) for b in opts['branch']]
309 # pats/include/exclude are passed to match.match() directly in
310 # pats/include/exclude are passed to match.match() directly in
310 # _matchfile() revset but walkchangerevs() builds its matcher with
311 # _matchfile() revset but walkchangerevs() builds its matcher with
311 # scmutil.match(). The difference is input pats are globbed on
312 # scmutil.match(). The difference is input pats are globbed on
@@ -1464,7 +1464,7 b' glog always reorders nodes which explain'
1464 abort: unknown revision 'not-a-branch'!
1464 abort: unknown revision 'not-a-branch'!
1465 abort: unknown revision 'not-a-branch'!
1465 abort: unknown revision 'not-a-branch'!
1466 abort: unknown revision 'not-a-branch'!
1466 abort: unknown revision 'not-a-branch'!
1467 $ testlog -b default -b branch --only-branch branch
1467 $ testlog -b 35 -b 36 --only-branch branch
1468 []
1468 []
1469 (group
1469 (group
1470 (group
1470 (group
General Comments 0
You need to be logged in to leave comments. Login now