Show More
@@ -415,8 +415,7 b' def overridemanifestmerge(origfn, repo, ' | |||||
415 | return processed |
|
415 | return processed | |
416 |
|
416 | |||
417 | # Override filemerge to prompt the user about how they wish to merge |
|
417 | # Override filemerge to prompt the user about how they wish to merge | |
418 |
# largefiles. This will handle identical edits |
|
418 | # largefiles. This will handle identical edits without prompting the user. | |
419 | # edit without prompting the user. |
|
|||
420 | def overridefilemerge(origfn, repo, mynode, orig, fcd, fco, fca): |
|
419 | def overridefilemerge(origfn, repo, mynode, orig, fcd, fco, fca): | |
421 | # Use better variable names here. Because this is a wrapper we cannot |
|
420 | # Use better variable names here. Because this is a wrapper we cannot | |
422 | # change the variable names in the function declaration. |
|
421 | # change the variable names in the function declaration. | |
@@ -427,10 +426,6 b' def overridefilemerge(origfn, repo, myno' | |||||
427 | if not fcother.cmp(fcdest): # files identical? |
|
426 | if not fcother.cmp(fcdest): # files identical? | |
428 | return None |
|
427 | return None | |
429 |
|
428 | |||
430 | # backwards, use working dir parent as ancestor |
|
|||
431 | if fcancestor == fcother: |
|
|||
432 | fcancestor = fcdest.parents()[0] |
|
|||
433 |
|
||||
434 | if orig != fcother.path(): |
|
429 | if orig != fcother.path(): | |
435 | repo.ui.status(_('merging %s and %s to %s\n') |
|
430 | repo.ui.status(_('merging %s and %s to %s\n') | |
436 | % (lfutil.splitstandin(orig), |
|
431 | % (lfutil.splitstandin(orig), | |
@@ -440,14 +435,6 b' def overridefilemerge(origfn, repo, myno' | |||||
440 | repo.ui.status(_('merging %s\n') |
|
435 | repo.ui.status(_('merging %s\n') | |
441 | % lfutil.splitstandin(fcdest.path())) |
|
436 | % lfutil.splitstandin(fcdest.path())) | |
442 |
|
437 | |||
443 | if fcancestor.path() != fcother.path() and fcother.data() == \ |
|
|||
444 | fcancestor.data(): |
|
|||
445 | return 0 |
|
|||
446 | if fcancestor.path() != fcdest.path() and fcdest.data() == \ |
|
|||
447 | fcancestor.data(): |
|
|||
448 | repo.wwrite(fcdest.path(), fcother.data(), fcother.flags()) |
|
|||
449 | return 0 |
|
|||
450 |
|
||||
451 | if repo.ui.promptchoice(_('largefile %s has a merge conflict\n' |
|
438 | if repo.ui.promptchoice(_('largefile %s has a merge conflict\n' | |
452 | 'keep (l)ocal or take (o)ther?' |
|
439 | 'keep (l)ocal or take (o)ther?' | |
453 | '$$ &Local $$ &Other') % |
|
440 | '$$ &Local $$ &Other') % |
General Comments 0
You need to be logged in to leave comments.
Login now