How to exclude a commit from git pull request?

浪尽此生 提交于 2019-12-06 08:05:13

问题


I have made a git pull request with my repo. Sometime later, before pull request got approved, I proceeded to make another commit&push which also got pushed up to pull request.

Is there a way to remove the last commit from pull request and how to prevent this from happening in the future?


回答1:


Yes, you simply can reset your branch to the previous commit, and force push: the pull request will be automatically updated.

git checkout yourBranch
git reset --hard yourBranch~
git push --force origin yourBranch

Then, if you want to make such an error harder, delete your branch locally: you won't checkout it or use it by mistake.



来源:https://stackoverflow.com/questions/25963039/how-to-exclude-a-commit-from-git-pull-request

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!