1. 查看所有的提交版本,包含当你co到之前提交版本后依旧可以看到以前的日志
git log --graph --pretty=format:'%h -%d %s (%cr)' --abbrev-commit --reflog
2. 查看日志
git log
可以查看提交历史,以便确定要回退到哪个版本。
git reflog
查看命令历史,以便确定要回到未来的哪个版本。
本文共 238 字,大约阅读时间需要 1 分钟。
1. 查看所有的提交版本,包含当你co到之前提交版本后依旧可以看到以前的日志
git log --graph --pretty=format:'%h -%d %s (%cr)' --abbrev-commit --reflog
2. 查看日志
git log
可以查看提交历史,以便确定要回退到哪个版本。
git reflog
查看命令历史,以便确定要回到未来的哪个版本。
转载于:https://www.cnblogs.com/pengyusong/p/7772826.html