在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
也未显示已更改的文件。
答案 0 :(得分:5)
bzr log --verbose
会在modified:
标题下列出文件。
此外,bzr help
和bzr help <command>
也很有帮助。