菜鸟笔记
提升您的技术认知

git commit回滚——两种方式-ag真人游戏

1. 应用场景 :

撤销已经提交的commit

2. ag真人游戏的解决方案:

  1. 使用 git reset --hard head^

  2. 使用 git rebase -i head~n

下面分别介绍下这两个方案有什么不同,和他们的使用场景 。

2.1 git reset --hard 丢弃最新的提交

代码提交后,需求发生变化导致之前提交的已经不合适,或者 代码提交后发现有严重bug,需要回滚可是使用这个命令:

git reset --hard head^

tips:

 

1,head^   表示 最新提交head位置往回数一个提交, 几个 ^  就往回数几个提交;
2,head~n  表示 新提交head位置往回数n个提交

可以发现,reset 命令只能回滚最新的提交。

如果最后一次commit需要保留,而只想回滚之前的某次commit,reset命令可能就无法满足了。(这个场景我第一次遇到的时候很是抓瞎)

2.2 git rebase -i 丢弃指定提交

针对想撤销中间某次commit的情况,可以使用如下的命令:

git rebase -i head~2

tips:

 

1, `rebase -i`是 `rebase --interactive` 的缩写;
2,  `git rebase -i` 不仅可以删除commit, 还可以修改commit。 具体的可以查看rebase 中提示的参数

输入git rebase -i head~2命令后,会出现一个编辑页面如下:

 

$ git rebase -i head~2
drop e47fa58 提交11
pick 338955c 提交12
# rebase 7f83da3..338955c onto 7f83da3 (2 commands)
#
# commands:
# p, pick  = use commit
# r, reword  = use commit, but edit the commit message
# e, edit  = use commit, but stop for amending
# s, squash  = use commit, but meld into previous commit
# f, fixup  = like "squash", but discard this commit's log message
# x, exec  = run command (the rest of the line) using shell
# b, break = stop here (continue rebase later with 'git rebase --continue')
# d, drop  = remove commit
# l, label 

编辑界面能够执行的操作,都有罗列出来:

 

`edit: 使用本次提交,在rebase到这次提交时候,会暂停下来等待修正`
`pick:使用本次提交,不操作修改`
`drop:删除这次提交`
`...`

这里的目标是删除倒数第二个提交,所以将倒数第二个提交前面修改为drop, 然后退出编辑界面就可以了。

再通过 git log 查看提交历史的时候,就会发现e47fa58 的提交记录已经不见了。

总结:

  1. 回滚最新的提交 :git resetgit rebase 命令都可以
  2. 回滚中间某次提交: git rebase 可以, git reset 不可以
  3. 如果提交已经同步到远程仓库,需要使用git push origin -f branch(分支名) 来将回滚也同步到远程仓库(master 分支谨慎使用 -f)
网站地图