Show More
@@ -1504,9 +1504,6 b' class localrepository:' | |||
|
1504 | 1504 | return 1 |
|
1505 | 1505 | branch_merge = True |
|
1506 | 1506 | |
|
1507 | if moddirstate: | |
|
1508 | self.dirstate.setparents(p1, p2) | |
|
1509 | ||
|
1510 | 1507 | # get the files we don't need to change |
|
1511 | 1508 | files = get.keys() |
|
1512 | 1509 | files.sort() |
@@ -1559,6 +1556,9 b' class localrepository:' | |||
|
1559 | 1556 | else: |
|
1560 | 1557 | self.dirstate.forget(remove) |
|
1561 | 1558 | |
|
1559 | if moddirstate: | |
|
1560 | self.dirstate.setparents(p1, p2) | |
|
1561 | ||
|
1562 | 1562 | def merge3(self, fn, my, other): |
|
1563 | 1563 | """perform a 3-way merge in the working directory""" |
|
1564 | 1564 |
General Comments 0
You need to be logged in to leave comments.
Login now