Skip to content

Instantly share code, notes, and snippets.

@cutiko
Created November 22, 2019 18:24
Show Gist options
  • Star 40 You must be signed in to star a gist
  • Fork 8 You must be signed in to fork a gist
  • Save cutiko/0b1615c63504a940877541362cc51211 to your computer and use it in GitHub Desktop.
Save cutiko/0b1615c63504a940877541362cc51211 to your computer and use it in GitHub Desktop.
Git delete last commit

Removing the last commit

To remove the last commit from git, you can simply run git reset --hard HEAD^ If you are removing multiple commits from the top, you can run git reset --hard HEAD~2 to remove the last two commits. You can increase the number to remove even more commits.

If you want to "uncommit" the commits, but keep the changes around for reworking, remove the "--hard": git reset HEAD^ which will evict the commits from the branch and from the index, but leave the working tree around.

If you want to save the commits on a new branch name, then run git branch newbranchname before doing the git reset.

ORIGINAL did fork but search didn't helped me

@jainamsutaria123
Copy link

it works, thanks :)

@The-Estonian
Copy link

Thanks a ton for that one!

@ahmeddarafat
Copy link

great!

@Schultzlm
Copy link

I will try it now, let's hope it still works.

@demo-inv-riyas
Copy link

How can I remove a specific commit by using SHA or message in between all of the commits?

@cutiko
Copy link
Author

cutiko commented Nov 17, 2022

@demo-inv-riyas take a look at git rebase. The other idea would be

  1. Revert before the first commit to delete
  2. checkout to new branch
  3. cherry pick from the origin branch all the commits you need skipping the one you don't need

https://stackoverflow.com/a/39119678
https://stackoverflow.com/a/3933416

Good luck

@iam8uman
Copy link

iam8uman commented Dec 3, 2022

Thanks it workss!!!

@Bascule-RS
Copy link

Becarfull:
It destroyed my last work. I just wanted to uncommit the last commit to put it on another branch .. anyway.

@tindecken
Copy link

Thanks, it works !!

@eyupakbaba
Copy link

Huge thanks!

@jvineveld
Copy link

Whheew, I thought I had lost some big changes in a local project. I wanted to change the commit msg, but forgot how (git commit --amend)

This function removes all the changes too! If you do this and want your commit back, you can do the following:

git reflog <- This will show all the changes you made, including the commit hash of the commit you removed
git reset --hard COMMIT_HASH <- will restore your changes

Credits to: https://stackoverflow.com/a/21778

@mirshanv
Copy link

Thanks, it works

@lindsay824
Copy link

@unblocked games 76 Really? It doesn't work for me

@anton-x-t
Copy link

Thank you, it works!

@RaitonGG
Copy link

this deleted my code....

@PATELNAMRATA
Copy link

it's work thank you..

@xhxe
Copy link

xhxe commented Mar 31, 2024

this deleted my code....

what where you expecting lmao???

@RaitonGG
Copy link

this deleted my code....

what where you expecting lmao???

that it would delete the last commit? as in uncommit files? not revert them? lmao?

@anton-x-t
Copy link

this deleted my code....

what where you expecting lmao???

that it would delete the last commit? as in uncommit files? not revert them? lmao?

The command you were looking for was git reset HEAD^ but I think you used git reset --hard HEAD^ so the uncommitted files were removed.

@RaitonGG
Copy link

RaitonGG commented Apr 2, 2024

this deleted my code....

what where you expecting lmao???

that it would delete the last commit? as in uncommit files? not revert them? lmao?

The command you were looking for was git reset HEAD^ but I think you used git reset --hard HEAD^ so the uncommitted files were removed.

thank you good sire

@abdolmaleamir
Copy link

mine says (more?) what should i do

@anton-x-t
Copy link

mine says (more?) what should i do

A quick google on git reset more showed me the answer. Google is your friend @abdolmaleamir .

You should probably do git reset HEAD~1.

Google link

Solution credit: thank you Adam Dymitruk

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment