markdown 在`git push`之后在本地和远程撤消`git commit`

Posted

tags:

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

```
git reset --hard <the-sha-you-want-to-return-to>
```
Or
This will undo the last commit.
```
git reset --hard HEAD~1
```
Or
This will undo the last two commits.
```
git reset --hard HEAD~2
```
Push the updated history to the remote. You need to pass the -f because you're replacing upstream history in the remote.
```
git push -f <remote> <branch>
```

以上是关于markdown 在`git push`之后在本地和远程撤消`git commit`的主要内容,如果未能解决你的问题,请参考以下文章

怎样讲本地代码git push到githun上

如何禁止GitLab分支被push

git push到GitHub的时候遇到

git push之后服务器如何自动更新?

git--git中的提交

git push 报错failed to push some refs to‘xxx‘