##// END OF EJS Templates
Report on push/pull if heads are merged, too, like for new heads....
Thomas Arendsen Hein -
r2424:09203924 default
parent child Browse files
Show More
@@ -1550,8 +1550,8 b' class localrepository(object):'
1550 1550
1551 1551 newheads = len(self.changelog.heads())
1552 1552 heads = ""
1553 if oldheads and newheads > oldheads:
1554 heads = _(" (+%d heads)") % (newheads - oldheads)
1553 if oldheads and newheads != oldheads:
1554 heads = _(" (%+d heads)") % (newheads - oldheads)
1555 1555
1556 1556 self.ui.status(_("added %d changesets"
1557 1557 " with %d changes to %d files%s\n")
@@ -47,4 +47,4 b' searching for changes'
47 47 adding changesets
48 48 adding manifests
49 49 adding file changes
50 added 1 changesets with 1 changes to 1 files
50 added 1 changesets with 1 changes to 1 files (-1 heads)
General Comments 0
You need to be logged in to leave comments. Login now