Skip to content

Git常用命令

luoml edited this page Sep 2, 2017 · 5 revisions

log

一行显示分支合并历史、缩略提交校验码 (SHA-1)

git log --graph --pretty=oneline --abbrev-commit

显示近两次更新的内容差异

git log -p -2

一行显示自 2017-08-20 之后作者为 luoml 的日志记录

git log --oneline --committer=luoml --since="2017-08-20"
Clone this wiki locally