From a3a9afb3b9ea1c49584e4bef3d475a10db2b040c Mon Sep 17 00:00:00 2001 From: thescalaguy Date: Mon, 26 Mar 2018 20:49:51 +0530 Subject: [PATCH] git-log: add --stat example (#2045) --- pages/common/git-log.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pages/common/git-log.md b/pages/common/git-log.md index 22ca93a77..813c1ef55 100644 --- a/pages/common/git-log.md +++ b/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`