git 查看log,通过 log 可以做很多事情,是前提
$ git log
git 查看缓存区状态,对未保存的文件做处理
$ git status
或 git status -s
git reset ,回退到之前提前,丢弃之后
--soft 保留代码到缓存区
$ git reset --soft <commit>
-- hard 丢弃代码
$ git reset --hard <commit>
git revert 回滚代码,基于最新提交
回滚多个不连续 commit
$ git revert <commit> <commit> <commit>
回滚多个连续 commit
$ git revert <oldest_commit>^..<lastest_commit>
回滚多个连续 commit 并只生成一个 commit
$ git revert -n <oldest_commit>^..<lastest_commit>
如果 git 报错 zsh: no matches found: xxx,^加上转义字符
$ git revert -n <oldest_commit>\^..<lastest_commit>
丢弃本地全部修改
$ git checkout -f