我git log
设置了两个别名:一个显示--name-status
:
...
| A path/to/yourfile.c
| M path/to/myfile.c
| M path/to/my/otherfile.c
...
还有一个要展示--stat
:
...
| path/to/yourfile.c | 2 ++
| path/to/myfile.c | 2 +-
| path/to/my/otherfile.c | 27 +++++-----
...
有没有可能将两者结合起来?
...
| A path/to/yourfile.c | 2 ++
| M path/to/myfile.c | 2 +-
| M path/to/my/otherfile.c | 27 +++++-----
...
我喜欢这个--stat
概述,但它并没有告诉我是添加还是删除了文件;只是它们以某种方式进行了修改。
(当两个命令行标志组合时,--stat
将被忽略。)