~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: Robert Collins
  • Date: 2005-10-18 12:53:07 UTC
  • mfrom: (1442.1.70)
  • Revision ID: robertc@robertcollins.net-20051018125307-730e47c1a034cb6f
Merge in various improvements to pull, testing and configuration.

* 'bzr pull' now accepts '--clobber' which will discard local changes
  and make this branch identical to the source branch. (Robert Collins)

* There is a new method for TestCaseInTempDir, assertFileEqual, which
  will check that a given content is equal to the content of the named
  file. (Robert Collins)

* 'pull' has been factored out of the command as WorkingTree.pull().
  A new option to WorkingTree.pull has been added, clobber, which will
  ignore diverged history and pull anyway.
  (Robert Collins)

* config.Config has a 'get_user_option' call that accepts an option name.
  This will be looked up in branches.conf and bazaar.conf as normal.
  It is intended that this be used by plugins to support options -
  options of built in programs should have specific methods on the config.
  (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
657
657
 
658
658
        These are files in the working directory that are not versioned or
659
659
        control files or ignored.
660
 
        
 
660
        >>> from bzrlib.workingtree import WorkingTree
661
661
        >>> b = ScratchBranch(files=['foo', 'foo~'])
662
662
        >>> list(b.unknowns())
663
663
        ['foo']
676
676
            mutter("add {%s} to revision-history" % revision_id)
677
677
        rev_history = self.revision_history()
678
678
        rev_history.extend(revision_ids)
 
679
        self.set_revision_history(rev_history)
 
680
 
 
681
    @needs_write_lock
 
682
    def set_revision_history(self, rev_history):
679
683
        self.put_controlfile('revision-history', '\n'.join(rev_history))
680
684
 
681
685
    def has_revision(self, revision_id):