2013-07-29 71 views

回答

50

--shortstat是你想要什麼:

git diff --shortstat commit1 commit2 

你也可以用它喜歡:

git diff --shortstat "@{1 day ago}" 
2

像許多Git命令git diff --shortstat不只是工作與提交,也可與分支名稱,標籤等。所以,如果你在feature/foo分支,並想比較develop運行。

git diff --shortstat develop

如果你想知道多線從上一版本標籤如何改變(例如3.1)運行

git diff --shortstat 3.1

1

僅作參考,並在案件多的人致力於同分支,請使用--author "<author name>"僅爲您自己的提交進行解釋。

相關問題