问题
I committed files that I don't want to push. I didn't push yet.
How can I remove the commit?
This is how my screen looks:
These are the options:
I don't want to undo any changes to the source code!
回答1:
To remove the commit without changing any source code, you need to perform a "mixed" reset.
Right click on the last "good" commit (this will probably be origin/master
). Select "Reset current branch to this commit."
In the resulting dialog, select "Mixed..." from the drop down and click OK.
Your working copy will remain the same (no files will be changed) but the index will be reset, meaning that all commits after the selected one will be removed from your history.
来源:https://stackoverflow.com/questions/30423775/remove-waiting-push-in-sourcetree