本文主要是介绍[git]Git revert(git 回退),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
0x0001起因
merge错了branch. 本地revert 了,但是不知道怎么push上去。
0x0002方法
git reset --hard HEAD~1//1表示在1次commit之前(or git reset --hard <commit ID号>)
git push -f(看来得霸王硬上弓阿)
0x0003其他参考,没用过,因为找不到那个蓝色的revert小按钮。。。擦擦擦
https://help.github.com/articles/reverting-a-pull-request/
1.In the “Pull Requests” list, click the pull request you’d like to revert.
2.Revert pull request linkNear the bottom of the pull request, click Revert.
3.Merge the resulting pull request. For more information, see “Merging a pull request.”
这篇关于[git]Git revert(git 回退)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!