How can I uncommit my last commit in git? I have googled it.
Is it
git reset --hard HEAD
or
git reset --hard HEAD^
Thank you.
|
How can I uncommit my last commit in git? I have googled it. Is it
or
Thank you. |
||||
|
Like the other answers say, it's:
This will throw away all uncommitted changes, resetting everything to the previous commit.If you don't want that, leave off But the other two answers neglect to mention why it's Edit: In case the number and speed of upvotes indicates a trend toward frequent views, here's the portion of the git-rev-parse documentation describing all of the ways to specify commits ( |
|||||||||||||||||||||
|
|
It's the latter.
|
|||||||
|
|
To keep the changes from the commit you want to undo
To destroy the changes from the commit you want to undo
You can also say
to go back 2 commits. |
|||
|
|
|
git reset --hard HEAD^ note: if you're on windows you'll need to quote the HEAD^ so git reset --hard "HEAD^" |
|||||||
|
git help reset) – David Zaslavsky May 16 '10 at 22:30