Question

How can I undo my last git commit?

You run git commit only to realize you forgot to add a file or that you made a mistake. We all do it, but we can never remember how to undo it! What is the command to undo a git commit?


Submit an answer


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Sign In or Sign Up to Answer

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Andrew SB
DigitalOcean Employee
DigitalOcean Employee badge
November 11, 2016
Accepted Answer

To undo your last commit and leave the previously committed changes unstaged, use the command:

  1. git reset HEAD~

Personally, I like to keep this aliased to git uncommit for quick reference. To do so, add this to your git configuration:

~/.gitconfig
[alias]
	uncommit = "reset HEAD~"

If you’d like to undo the commit but leave the changes staged, run:

  1. git reset --soft HEAD~

If you simply want to redo the commit message, there is no need to rest. You can change the message using:

  1. git commit --amend

This can also be used to add changes to the previous commit. For example, to add a file that you forgot to include, run:

  1. git add forgotten_file
  2. git commit --amend

You’ll be given the opportunity to modify the commit message and the newly added file will be included.

To completely remove all traces of the last commit, nuke it from orbit with:

  1. git reset --hard HEAD~1

To revert to a specific previous commit, losing all history between, use:

  1. git reset --hard a731962

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel