markdown 在git rebase / git merge之后撤消

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 在git rebase / git merge之后撤消相关的知识,希望对你有一定的参考价值。

# Undo after `git rebase`

```shell

git reset --hard ORIG_HEAD

```


# Undo after `git merge`

```shell

git reset --merge ORIG_HEAD

```

## Note: You can use `git reflog` and @ syntax also (google for more detail)

E.g. Reset to the 2 HEAD moves ago

```shell

git reflog

# The reflog will show here

```

Then you can use:

```shell

git reset --hard HEAD@{2}

```

以上是关于markdown 在git rebase / git merge之后撤消的主要内容,如果未能解决你的问题,请参考以下文章

markdown git,merge,rebase

markdown git rebase

markdown git rebase变基合并

markdown 来自远程fork repo的Git rebase

git rebase 合并多个commit为一个commit

做了一些 git 操作后,我的 finder 上出现了多个文件重复