mercurial/localrepo.py
changeset 18672 b2b4ddc55caa
parent 18661 4fb92f14a97a
child 18677 539210ed2069
--- a/mercurial/localrepo.py	Sat Feb 09 09:04:32 2013 -0800
+++ b/mercurial/localrepo.py	Sat Feb 09 09:04:48 2013 -0800
@@ -2399,6 +2399,12 @@
                     for n in added:
                         self.hook("incoming", node=hex(n), source=srctype,
                                   url=url)
+
+                    heads = self.heads()
+                    self.ui.log("incoming",
+                                _("%s incoming changes - new heads: %s\n"),
+                                len(added),
+                                ', '.join([hex(c[:6]) for c in heads]))
                 self._afterlock(runhooks)
 
         finally: