如何在集市中查看每个提交更改的文件?

时间:2011-05-12 15:24:07

标签: command-line bazaar

在git中,我可以使用git log --stat查看提交中更改的文件。我怎么能在bzr中做到这一点?

$ git log --stat

commit dbdc98ccc1ce12a31a0bf29173b4990ccbff98
Author: Me <Me@Me.com>
Date:   Thu Jan 29 19:03:10 2011 -0800

    Add snipMate v0.83

 vim/after/plugin/snipMate.vim     |   35 ++
 vim/autoload/snipMate.vim         |  433 ++++++++++++++++++++++++++
 vim/doc/snipMate.txt              |  286 +++++++++++++++++

bzr viz也未显示已更改的文件。

1 个答案:

答案 0 :(得分:5)

bzr log --verbose会在modified:标题下列出文件。

此外,bzr helpbzr help <command>也很有帮助。