-=[ Mr. Bumblebee ]=-
_Indonesia_
The Branch API in bzrlib provides creation and management of Branches.
A Branch represents a series of commits and merges carried out by a user.
Make a temporary directory for these tests:
>>> from bzrlib import osutils
>>> test_dir = osutils.mkdtemp(prefix='bzrlib_doc_api_branch_txt_')
Branches are created by BzrDir's:
>>> from bzrlib.branch import Branch
>>> from bzrlib.bzrdir import BzrDir
>>> new_branch = BzrDir.create_branch_convenience(test_dir)
Existing Branches can be opened directly:
>>> transport = new_branch.bzrdir.transport
>>> another_instance = Branch.open(transport.clone('..').base)
or via the BzrDir:
>>> still_the_same_branch = new_branch.bzrdir.open_branch()
A branch has a history of revisions on it:
>>> new_branch.last_revision()
'null:'
We need to write some more documentation, showing
push and pull operations. Cloning might also be nice.
And finally, clean up:
>>> import shutil
>>> shutil.rmtree(test_dir)
Copyright © 2017 || Recoded By Mr.Bumblebee