bazaar中是否有签出历史记录,或者是否有一种方法可以打开它,或者监视服务器上的签出?
提前感谢
发布于 2015-01-07 08:15:50
一个简单的google搜索得到以下命令:(http://doc.bazaar.canonical.com/latest/en/user-guide/browsing_history.html)
% bzr log -r 1000.. # Revision 1000 and everything after it
% bzr log -r ..1000 # Everything up to and including r1000
% bzr log -r 1000..1100 # changes from 1000 to 1100
% bzr log -r 1000 # The changes in only revision 1000还有一些图形化工具,如QBzr和bzr-gtk。这能回答你的问题吗?
https://askubuntu.com/questions/569761
复制相似问题