Add git shortlog

git shortlog summaries git log output. Each commit is grouped by
authors and title.
This commit is contained in:
S N Munendra 2016-07-16 13:33:32 +05:30
parent 996de6a5a3
commit d764ab7516
2 changed files with 9 additions and 0 deletions

View File

@ -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)
<!-- Dont remove or change the comment below that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
<!-- @doxie.inject end toc -->
@ -892,5 +893,10 @@ git remote add <remote-nickname> <remote-url>
git blame <file-name>
```
## Group commits by authors and title
```sh
git shortlog
```
<!-- Dont remove or change the comment below that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
<!-- @doxie.inject end -->

View File

@ -386,4 +386,7 @@
}, {
"title": "Show the author, time and last revision made to each line of a given file",
"tip": "git blame <file-name>"
}, {
"title": "Group commits by authors and title",
"tip": "git shortlog"
}]