如何使用集市查看文件的修订版?
how to view a revision of a file with bazaar?
我想查看文件的修订版,而不必将我的存储库恢复到所述修订版。
这可以通过命令行实现吗?
note: I know that bzr log <my file> -p
let me view the changes and the diff. But this is not what I'm looking for
您要查找的命令可能是bzr cat
。要指定修订版,请使用 -r
选项:
bzr cat -r <revision> <file>
我想查看文件的修订版,而不必将我的存储库恢复到所述修订版。
这可以通过命令行实现吗?
note: I know that
bzr log <my file> -p
let me view the changes and the diff. But this is not what I'm looking for
您要查找的命令可能是bzr cat
。要指定修订版,请使用 -r
选项:
bzr cat -r <revision> <file>