yihong0618 和朋友们的频道 头像

消息来源频道

yihong0618 和朋友们的频道

@hyi0618

频道8,612 位成员公开可见0 人在线

yihong0618 和朋友们的频道

成员规模8,612 位成员
在线情况0 人在线
消息总数10,129 条消息
浏览量总数3,285,753 次浏览

在这个频道里搜索消息……

t.me/hyi0618

TIL:
Link: https://github.com/jbranchaud/til/blob/master/git/include-some-stats-in-your-git-log.md
📌 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.
$ git log --stat
commit 66e67741a1cd6857a4467d1453c9f17ef5849f20
Author: jbranchaud <[email protected]>
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 <[email protected]>
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.