3
3
A Branch represents a series of commits and merges carried out by a user.
5
10
Branches are created by BzrDir's:
8
12
>>> from bzrlib.branch import Branch
13
17
Existing Branches can be opened directly:
22
26
A branch has a history of revisions on it:
24
28
>>> new_branch.revision_history()
28
31
We need to write some more documentation, showing
29
32
push and pull operations. Cloning might also be nice.