1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 07:08:01 +00:00

Add Include Some Stats In Your Git Log as a git til

This commit is contained in:
jbranchaud
2017-11-17 08:58:17 -06:00
parent 66e67741a1
commit a0780b59b5
2 changed files with 36 additions and 1 deletions

View File

@@ -10,7 +10,7 @@ smart people at [Hashrocket](http://hashrocket.com/).
For a steady stream of TILs from a variety of rocketeers, checkout
[til.hashrocket.com](https://til.hashrocket.com/).
_588 TILs and counting..._
_589 TILs and counting..._
---
@@ -163,6 +163,7 @@ _588 TILs and counting..._
- [Grep For A Pattern On Another Branch](git/grep-for-a-pattern-on-another-branch.md)
- [Grep Over Commit Messages](git/grep-over-commit-messages.md)
- [Ignore Changes To A Tracked File](git/ignore-changes-to-a-tracked-file.md)
- [Include Some Stats In Your Git Log](git/include-some-stats-in-your-git-log.md)
- [Intent To Add](git/intent-to-add.md)
- [Interactively Unstage Changes](git/interactively-unstage-changes.md)
- [Last Commit A File Appeared In](git/last-commit-a-file-appeared-in.md)

View File

@@ -0,0 +1,34 @@
# Include Some Stats In Your Git Log
A simple `git log` command is going to give you a concise set of information
for each commit. Usually it is enough info. When it's not, `git log` can
provide additional information with the right flags. To include overall and
per-file stats on the number of insertions and deletions, use the `--stat`
flag.
```bash
$ git log --stat
commit 66e67741a1cd6857a4467d1453c9f17ef5849f20
Author: jbranchaud <jbranchaud@gmail.com>
Date: Mon Nov 13 21:24:41 2017 -0600
Add Focus The URL Bar as an internet til
README.md | 3 ++-
internet/focus-the-url-bar.md | 10 ++++++++++
2 files changed, 12 insertions(+), 1 deletion(-)
commit 9241e3919ef1e4f68b71a1491d368ae6361084aa
Author: jbranchaud <jbranchaud@gmail.com>
Date: Sat Nov 11 11:41:40 2017 -0600
Add Freeze An Object, Sorta as a javascript til
README.md | 3 ++-
javascript/freeze-an-object-sorta.md | 44 ++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 46 insertions(+), 1 deletion(-)
...
```
See `man git-log` for more details.