##// END OF EJS Templates
scmutil: document that bookmarkrevs() ignores non-head bookmark branch...
Yuya Nishihara -
r46654:b9ebe0bf default
parent child Browse files
Show More
@@ -2300,8 +2300,9 b' def _getrevsfromsymbols(repo, symbols):'
2300
2300
2301
2301
2302 def bookmarkrevs(repo, mark):
2302 def bookmarkrevs(repo, mark):
2303 """
2303 """Select revisions reachable by a given bookmark
2304 Select revisions reachable by a given bookmark
2304
2305 If the bookmarked revision isn't a head, an empty set will be returned.
2305 """
2306 """
2306 return repo.revs(
2307 return repo.revs(
2307 b"ancestors(bookmark(%s)) - "
2308 b"ancestors(bookmark(%s)) - "
General Comments 0
You need to be logged in to leave comments. Login now