##// END OF EJS Templates
Clarified message when nothing to merge is seen....
Thomas Arendsen Hein -
r2548:0229ff95 default
parent child Browse files
Show More
@@ -1643,8 +1643,8 b' class localrepository(object):'
1643 linear_path = (pa == p1 or pa == p2)
1643 linear_path = (pa == p1 or pa == p2)
1644
1644
1645 if allow and linear_path:
1645 if allow and linear_path:
1646 raise util.Abort(_("there is nothing to merge, "
1646 raise util.Abort(_("there is nothing to merge, just use "
1647 "just use 'hg update'"))
1647 "'hg update' or look at 'hg heads'"))
1648 if allow and not forcemerge:
1648 if allow and not forcemerge:
1649 if modified or added or removed:
1649 if modified or added or removed:
1650 raise util.Abort(_("outstanding uncommitted changes"))
1650 raise util.Abort(_("outstanding uncommitted changes"))
General Comments 0
You need to be logged in to leave comments. Login now