瀏覽代碼

git-log: add --stat example (#2045)

thescalaguy 7 年之前
父節點
當前提交
a3a9afb3b9
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      pages/common/git-log.md

+ 4 - 0
pages/common/git-log.md

@@ -14,6 +14,10 @@
 
 `git log --oneline`
 
+- Show an overview of which file(s) changed in each commit:
+
+`git log --stat`
+
 - Show all commits, tags and branches for the entire repo in a graph format:
 
 `git log --oneline --decorate --all --graph`