Say I have 10 versions in bzr repository, and I want to remove the last 2 versions. I tried "bzr revert -r -3", but it just revert the files to the second last version, and the following "bar log" still shows all 10 versions in the repository.
How to remove certain versions in bzr repository?
40 views Asked by Hailiang Zhang At
1
The command to do that is
uncommit
:The last two revisions will be removed from the branch.