clankill3r
clankill3r

Reputation: 9533

Remove waiting push in SourceTree

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:

change list

These are the options:

options

I don't want to undo any changes to the source code!

Upvotes: 21

Views: 50828

Answers (1)

BJ Myers
BJ Myers

Reputation: 6813

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."

Reset current branch to this commit

In the resulting dialog, select "Mixed..." from the drop down and click OK.

Mixed

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.

Upvotes: 54

Related Questions