I want to discard all changes done after commit <commit-hash>
. So I did:
git reset --hard <commit-hash>
Now I want to do the same with my remote. How can I do this? I have done some commits (and pushes) after <commit-hash>
and I just want to discard them all. Is just something went terribly wrong in the way and I don't want to make it worse than it is already. ;(
I basically want to rewind my origin/master
to <commit-hash>
When you want to revert to a past commit using git reset – – hard, add <SOME-COMMIT>. Then Git will: Make your present branch (typically master) back to point at <SOME-COMMIT>. Then it will make the files in the working tree and the index (“staging area”) the same as the versions committed in <SOME-COMMIT>.
Make sure you are on the branch where the commit is. I'm doing this on master. Then use git reset –hard <commit-hash> to set the current branch HEAD to the commit you want.
provided <remotebranchname> already exists on the remote. (If it doesn't, you can use git push <remotename> <commit SHA>:refs/heads/<remotebranchname> to autocreate it.) If you want to push a commit without pushing previous commits, you should first use git rebase -i to re-order the commits.
Assuming that your branch is called master
both here and remotely, and that your remote is called origin
you could do:
git reset --hard <commit-hash> git push -f origin master
However, you should avoid doing this if anyone else is working with your remote repository and has pulled your changes. In that case, it would be better to revert the commits that you don't want, then push as normal.
Update: you've explained below that other people have pulled the changes that you've pushed, so it's better to create a new commit that reverts all of those changes. There's a nice explanation of your options for doing this in this answer from Jakub Narębski. Which one is most convenient depends on how many commits you want to revert, and which method makes most sense to you.
Since from your question it's clear that you have already used git reset --hard
to reset your master
branch, you may need to start by using git reset --hard ORIG_HEAD
to move your branch back to where it was before. (As always with git reset --hard
, make sure that git status
is clean, that you're on the right branch and that you're aware of git reflog
as a tool to recover apparently lost commits.) You should also check that ORIG_HEAD
points to the right commit, with git show ORIG_HEAD
.
Troubleshooting:
If you get a message like "! [remote rejected] a60f7d85 -> master (pre-receive hook declined)"
then you have to allow branch history rewriting for the specific branch. In BitBucket for example it said "Rewriting branch history is not allowed". There is a checkbox named Allow rewriting branch history
which you have to check.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With