Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我在 bzr 存储库中有 10 个版本,我想删除最后 2 个版本。我尝试了“bzr revert -r -3”,但它只是将文件恢复到倒数第二个版本,并且下面的“bar log”仍然显示存储库中的所有 10 个版本。
执行此操作的命令是uncommit:
uncommit
bzr uncommit -r-3
最后两个修订将从分支中删除。