~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/merge.py

  • Committer: Martin Pool
  • Date: 2005-09-29 13:17:12 UTC
  • mto: (1185.14.2)
  • mto: This revision was merged to the branch mainline in revision 1396.
  • Revision ID: mbp@sourcefrog.net-20050929131712-5b51dc54b3a3f5f5
- factor out stereotyped use of merge to build working dir

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
from bzrlib.revision import common_ancestor, MultipleRevisionSources
37
37
from bzrlib.errors import NoSuchRevision
38
38
 
 
39
# TODO: build_working_dir can be built on something simpler than merge()
 
40
 
 
41
# FIXME: merge() parameters seem oriented towards the command line
39
42
 
40
43
# comments from abentley on irc: merge happens in two stages, each
41
44
# of which generates a changeset object
222
225
            return self.cached[id]
223
226
 
224
227
 
 
228
def build_working_dir(to_dir):
 
229
    """Build a working directory in an empty directory.
 
230
 
 
231
    to_dir is a directory containing branch metadata but no working files,
 
232
    typically constructed by cloning an existing branch. 
 
233
 
 
234
    This is split out as a special idiomatic case of merge.  It could
 
235
    eventually be done by just building the tree directly calling into 
 
236
    lower-level code (e.g. constructing a changeset).
 
237
    """
 
238
    merge((to_dir, -1), (to_dir, 0), this_dir=to_dir,
 
239
          check_clean=False, ignore_zero=True)
 
240
 
225
241
 
226
242
def merge(other_revision, base_revision,
227
243
          check_clean=True, ignore_zero=False,
238
254
    check_clean
239
255
        If true, this_dir must have no uncommitted changes before the
240
256
        merge begins.
 
257
    ignore_zero - If true, suppress the "zero conflicts" message when 
 
258
        there are no conflicts; should be set when doing something we expect
 
259
        to complete perfectly.
241
260
 
242
261
    All available ancestors of other_revision and base_revision are
243
262
    automatically pulled into the branch.