##// END OF EJS Templates
pull: run findcommon incoming on unfiltered repo...
Pierre-Yves David -
r20222:228ae760 default
parent child Browse files
Show More
@@ -1665,8 +1665,8 b' class localrepository(object):'
1665 trname = 'pull\n' + util.hidepassword(remote.url())
1665 trname = 'pull\n' + util.hidepassword(remote.url())
1666 lock = self.lock()
1666 lock = self.lock()
1667 try:
1667 try:
1668 tmp = discovery.findcommonincoming(self, remote, heads=heads,
1668 tmp = discovery.findcommonincoming(self.unfiltered(), remote,
1669 force=force)
1669 heads=heads, force=force)
1670 common, fetch, rheads = tmp
1670 common, fetch, rheads = tmp
1671 if not fetch:
1671 if not fetch:
1672 self.ui.status(_("no changes found\n"))
1672 self.ui.status(_("no changes found\n"))
General Comments 0
You need to be logged in to leave comments. Login now