equal
deleted
inserted
replaced
1103 return 1 |
1103 return 1 |
1104 |
1104 |
1105 ctx = repo[node] |
1105 ctx = repo[node] |
1106 parents = ctx.parents() |
1106 parents = ctx.parents() |
1107 |
1107 |
1108 if bheads and not [x for x in parents |
1108 if (bheads and node not in bheads and not |
1109 if x.node() in bheads and x.branch() == branch]: |
1109 [x for x in parents if x.node() in bheads and x.branch() == branch]): |
1110 ui.status(_('created new head\n')) |
1110 ui.status(_('created new head\n')) |
1111 # The message is not printed for initial roots. For the other |
1111 # The message is not printed for initial roots. For the other |
1112 # changesets, it is printed in the following situations: |
1112 # changesets, it is printed in the following situations: |
1113 # |
1113 # |
1114 # Par column: for the 2 parents with ... |
1114 # Par column: for the 2 parents with ... |