~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/merge.py

  • Committer: Martin Pool
  • Date: 2005-08-05 19:38:50 UTC
  • Revision ID: mbp@sourcefrog.net-20050805193850-d3d034f15388791a
- add some comments on merge from talking to aaron

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
from merge_core import merge_flex, ApplyMerge3, BackupBeforeChange
 
1
from bzrlib.merge_core import merge_flex, ApplyMerge3, BackupBeforeChange
2
2
from bzrlib.changeset import generate_changeset, ExceptionConflictHandler
3
3
from bzrlib.changeset import Inventory, Diff3Merge
4
4
from bzrlib import find_branch
11
11
import shutil
12
12
import errno
13
13
 
 
14
 
 
15
# comments from abentley on irc: merge happens in two stages, each
 
16
# of which generates a changeset object
 
17
 
 
18
# stage 1: generate OLD->OTHER,
 
19
# stage 2: use MINE and OLD->OTHER to generate MINE -> RESULT
 
20
 
14
21
class UnrelatedBranches(BzrCommandError):
15
22
    def __init__(self):
16
23
        msg = "Branches have no common ancestor, and no base revision"\
24
31
    This subclasses ExceptionConflictHandler, so that any types of
25
32
    conflict that are not explicitly handled cause an exception and
26
33
    terminate the merge.
27
 
 
28
34
    """
29
35
    def __init__(self, dir, ignore_zero=False):
30
36
        ExceptionConflictHandler.__init__(self, dir)