git log 显示当前分支所有提交过的版本信息 git log --pretty=oneline只会显示版本号和提交时的备注信息 git reset --hard xxxx回退
git log
git log --pretty=oneline
git reset --hard xxxx
git reflog查看所有分支的所有操作记录信息(包括已经被删除的 commit 记录和 reset 的操作) git reset --hard xxxx回退
git reflog