查看git日志的命令

查看日志

1
git log

查看近两次提交的日志

1
git log -2

查看近两周提交的日志

1
git log --since=2.weeks

查看某一天提交的日志

1
git log --since=2019--01--14

查看最近两年三个月前天3分钟的日志

1
git log --since="2 years 1 day 3 minutes ago"

log查看分支图

1
git log --oneline --all --graph

显示提交的差异

1
git log --patch

查看某一段时间内的提交记录

1
git log --since="2024-1-07" --until="2024-1-17" --pretty= --numstat | awk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf "添加的行数:%s, 删除的行数:%s, 总行数:%s\n", add, subs, loc }' -

结果是

1
添加的行数:142, 删除的行数:100, 总行数:42
作者

Bruce Liu

发布于

2019-01-14

更新于

2024-01-16

许可协议

You need to set install_url to use ShareThis. Please set it in _config.yml.
You forgot to set the business or currency_code for Paypal. Please set it in _config.yml.

评论

You forgot to set the shortname for Disqus. Please set it in _config.yml.