Git查看历史记录
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git查看历史记录相关的知识,希望对你有一定的参考价值。
查看历史,列出历史提交记录
git log
命令行输出
查看历史记录的简洁的版本
git log --oneline
命令行输出
用 --graph 选项,查看历史中什么时候出现了分支、合并
git log --oneline --graph
命令行输出
用 ‘--reverse‘参数来逆向显示所有日志
git log --reverse --oneline
命令行输出
查找指定用户的提交日志
git log --author=yunshuo --oneline -5
命令行输出
--before
git log --oneline --before={2017-03-16}
命令行输出
--after
git log --oneline --after={2017-03-16}
命令行输出
--since
git log --oneline --since={2017-03-15}
命令行输出
--until
git log --oneline --since={2017-03-16}
命令行输出
本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1907263
以上是关于Git查看历史记录的主要内容,如果未能解决你的问题,请参考以下文章