19
19
# Original author: David Allouche
21
from bzrlib import errors, merge, revision
27
22
from bzrlib.branch import Branch
28
23
from bzrlib.i18n import gettext
29
24
from bzrlib.trace import note
40
def switch(control_dir, to_branch, force=False, quiet=False, revision_id=None,
41
store_uncommitted=False):
35
def switch(control_dir, to_branch, force=False, quiet=False, revision_id=None):
42
36
"""Switch the branch associated with a checkout.
44
38
:param control_dir: ControlDir of the checkout to change
45
39
:param to_branch: branch that the checkout is to reference
46
40
:param force: skip the check for local commits in a heavy checkout
47
41
:param revision_id: revision ID to switch to.
48
:param store_uncommitted: If True, store uncommitted changes in the
51
43
_check_pending_merges(control_dir, force)
53
45
source_repository = control_dir.open_branch().repository
54
46
except errors.NotBranchError:
55
47
source_repository = to_branch.repository
57
with lock.write_locked(control_dir.open_workingtree()) as tree:
58
tree.store_uncommitted()
61
_set_branch_location(control_dir, to_branch, force)
48
_set_branch_location(control_dir, to_branch, force)
64
49
tree = control_dir.open_workingtree()
65
_update(tree, source_repository, quiet, revision_id, store_uncommitted)
50
_update(tree, source_repository, quiet, revision_id)
66
51
_run_post_switch_hooks(control_dir, to_branch, force, revision_id)
68
53
def _check_pending_merges(control, force=False):
129
# If this is a standalone tree and the new branch
130
# is derived from this one, create a lightweight checkout.
133
graph = b.repository.get_graph(to_branch.repository)
134
if (b.bzrdir._format.colocated_branches and
135
(force or graph.is_ancestor(b.last_revision(),
136
to_branch.last_revision()))):
137
b.bzrdir.destroy_branch()
138
b.bzrdir.set_branch_reference(to_branch, name="")
140
raise errors.BzrCommandError(gettext('Cannot switch a branch, '
114
raise errors.BzrCommandError(gettext('Cannot switch a branch, '
146
118
def _any_local_commits(this_branch, possible_transports):
165
def _update(tree, source_repository, quiet=False, revision_id=None,
166
restore_uncommitted=False):
137
def _update(tree, source_repository, quiet=False, revision_id=None):
167
138
"""Update a working tree to the latest revision of its branch.
169
140
:param tree: the working tree
170
141
:param source_repository: repository holding the revisions
171
:param restore_uncommitted: restore any uncommitted changes in the branch.
173
if restore_uncommitted:
176
tree.lock_tree_write()
143
tree.lock_tree_write()
178
145
to_branch = tree.branch
179
146
if revision_id is None:
181
148
if tree.last_revision() == revision_id:
183
150
note(gettext("Tree is up to date at revision %d."), to_branch.revno())
185
base_tree = source_repository.revision_tree(tree.last_revision())
186
merge.Merge3Merger(tree, tree, base_tree,
187
to_branch.repository.revision_tree(revision_id))
188
tree.set_last_revision(to_branch.last_revision())
190
note(gettext('Updated to revision %d.') % to_branch.revno())
191
if restore_uncommitted:
192
tree.restore_uncommitted()
152
base_tree = source_repository.revision_tree(tree.last_revision())
153
merge.Merge3Merger(tree, tree, base_tree, to_branch.repository.revision_tree(revision_id))
154
tree.set_last_revision(to_branch.last_revision())
156
note(gettext('Updated to revision %d.') % to_branch.revno())