Skip to content

Instantly share code, notes, and snippets.

@salacoste
Last active February 26, 2023 20:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save salacoste/4c4c06c264400af8b4eda00acf3a5d7a to your computer and use it in GitHub Desktop.
Save salacoste/4c4c06c264400af8b4eda00acf3a5d7a to your computer and use it in GitHub Desktop.
How remove last one (or any number) commits

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.

git reset --hard HEAD^ git push origin -f

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