I've accidentally pulled to my local bazaar repo from a wrong location. Fortunately my files have not been overwritten, as bazaar recognized the difference:
bzr: ERROR: These branches have diverged. Use the missing command to see how.
Use the merge command to reconcile them.`
However the object packs have been pulled, and I suspect they may cause conflicts if I don't clean them up now.
I saw that with git you can do this via git reset --hard HEAD^
.
Bazaar doc says there's only partial support for that. What is the proper way of resolving this mistake with bazaar? Is bzr revert
enough?