我可以使用什么命令来了解两个分支之间有多少文件不同,只是摘要,而不是实际文件。类似的东西:
51 Modified
3 Deleted
4 New files
感谢。
答案 0 :(得分:5)
试试git diff --stat
。还有更短的--shortstat
。
e.g。在分支master
上输入git diff --stat otherbranchname
答案 1 :(得分:0)
git diff --shortstat branch1..branch2
这将显示branch1
和branch2
之间的差异,但仅输出简短摘要,例如:
2 files changed, 165 insertions(+), 5 deletions(-)
还有其他方法可以指定提交范围,git diff
会查看,您可以阅读它们in the manual。