From c63ef4d8d645443bd82379697c65bb1ba0edc0e5 Mon Sep 17 00:00:00 2001 From: Jeef Date: Fri, 24 Feb 2017 02:20:09 -0500 Subject: [PATCH] git-log: add graph view (#1275) --- 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 696cf9d303..22ca93a77a 100644 --- a/pages/common/git-log.md +++ b/pages/common/git-log.md @@ -14,6 +14,10 @@ `git log --oneline` +- Show all commits, tags and branches for the entire repo in a graph format: + +`git log --oneline --decorate --all --graph` + - Show only commits whose messages include a given string (case-insensitively): `git log -i --grep {{search_string}}`