comparison mercurial/revset.py @ 47275:ba673c821b9d

revset: document the `outgoing` behavior if the path resolve to multiple urls Differential Revision: https://phab.mercurial-scm.org/D10454
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Sun, 11 Apr 2021 19:19:34 +0200
parents a407fe56d6e8
children 7a430116f639
comparison
equal deleted inserted replaced
47274:0470a44b9e74 47275:ba673c821b9d
1840 1840
1841 @predicate(b'outgoing([path])', safe=False, weight=10) 1841 @predicate(b'outgoing([path])', safe=False, weight=10)
1842 def outgoing(repo, subset, x): 1842 def outgoing(repo, subset, x):
1843 """Changesets not found in the specified destination repository, or the 1843 """Changesets not found in the specified destination repository, or the
1844 default push location. 1844 default push location.
1845
1846 If the location resolve to multiple repositories, the union of all
1847 outgoing changeset will be used.
1845 """ 1848 """
1846 # Avoid cycles. 1849 # Avoid cycles.
1847 from . import ( 1850 from . import (
1848 discovery, 1851 discovery,
1849 hg, 1852 hg,