其中 git 查看日志有好些参数,黑马总结了下,这里记录一下
git 1og--pretty=oneline --a11 --graph --abbrev-commit
oneline 就是在同一行显示,graph 是以层次关系显示, --abbrev-commit 是查看唯一标识符。那么这么长的命令,每次要敲就很不方便了,所有里面也提到起一个别名来简化
$ alias git-1og
alias git-1og='git log --pretty=oneline --a11 --graph--abbrev-commit!