From d764ab75165c3e4ac3d703d70093df7f9d9fec7a Mon Sep 17 00:00:00 2001 From: S N Munendra Date: Sat, 16 Jul 2016 13:33:32 +0530 Subject: [PATCH] Add git shortlog git shortlog summaries git log output. Each commit is grouped by authors and title. --- README.md | 6 ++++++ tips.json | 3 +++ 2 files changed, 9 insertions(+) diff --git a/README.md b/README.md index 8e15921..7f80a6d 100644 --- a/README.md +++ b/README.md @@ -127,6 +127,7 @@ P.S: All these commands are tested on `git version 2.7.4 (Apple Git-66)`. * [Force push to Remote Repository](#force-push-to-remote-repository) * [Adding Remote name](#adding-remote-name) * [Show the author, time and last revision made to each line of a given file](#show-the-author-time-and-last-revision-made-to-each-line-of-a-given-file) +* [Group commits by authors and title](#group-commits-by-authors-and-title) @@ -892,5 +893,10 @@ git remote add git blame ``` +## Group commits by authors and title +```sh +git shortlog +``` + diff --git a/tips.json b/tips.json index d730120..ea1779b 100644 --- a/tips.json +++ b/tips.json @@ -386,4 +386,7 @@ }, { "title": "Show the author, time and last revision made to each line of a given file", "tip": "git blame " +}, { + "title": "Group commits by authors and title", + "tip": "git shortlog" }]