# 回滚

git resetgit revert 都可用于代码版本回滚

🧽 git reset

  • git reset --merge 回退到 merge 以前,用于不想解决冲突的时候

git reset 是回退到某个 commit ID 版本位置

# 查询commitID
$ git log
# 执行版本回退
$ git reset --hard [commitID]
# 强制push代码到远程仓库
$ git push -f
1
2
3
4
5
6

注意

🧽 git revert

git revert 是撤销某个 commit ID 版本,会撤销某个 commitID 的提交。

  • revert 适合需要回退的历史提交不多,且无合并冲突的情景。
# 查询commitID
$ git log
# 执行版本回退
$ git revert -n [commitID]
# 出现冲突就解决冲突,如无冲突
$ git commit -m "版本名"
# push代码到远程仓库
$ git push
1
2
3
4
5
6
7
8

RUNOOB 图标

WARNING

  • git reset是回退到某个 commitID 版本历史,git revert是撤销某个 commitID 得提交。

  • git reset不会保留 commitID 之后的提交记录,git revert不会对 commitID 之前和之后的 commit 产生影响,但会生成一个新的 commit。

Last Updated: 3/4/2024, 3:06:40 PM