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?
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!
Accepted Answer
To undo your last commit and leave the previously committed changes unstaged, use the command:
- 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:
[alias]
uncommit = "reset HEAD~"
If you’d like to undo the commit but leave the changes staged, run:
- 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:
- 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:
- git add forgotten_file
- 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:
- git reset --hard HEAD~1
To revert to a specific previous commit, losing all history between, use:
- git reset --hard a731962
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.