You are not logged in.
Pages: 1
What is the bzr equivalent of svn update?
Offline
Bump? Simple question, I'm sure someone knows...
Offline
bzr update [DIR]
Update a tree to have the latest code committed to its branch.
Offline
bzr update [DIR] Update a tree to have the latest code committed to its branch.
Doesn't work.
Offline
bzr merge
Offline
bzr merge
I want to update, not merge. What if I had made changes to the project and I don't want to merge? I just want to update the entire thing and overwrite with the latest stuff.
Offline
'bzr pull' to update your branch to the latest revision of the parrent branch. But if you have made changes to your branch and parrent branch has also changed then you can't pull from the parrent branch, instead you need to merge the changes from parrent in your branch.
Offline
Surely there must be a way to simply update your local copy with the latest version?
Offline
Surely there must be a way to simply update your local copy with the latest version?
Have you tried bzr pull???
That's the only way to update your local copy with the latest revisions.
If bzr pull doesn't work then post the error message here.
Last edited by SnapShot (2008-09-10 01:48:04)
Offline
Pages: 1