Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

how to uncommit my last commit in git


git reset --soft HEAD^

git reset HEAD^
//And if you actually want to completely undo it, throwing away all uncommitted changes, resetting everything to the previous commit (as the original question asked):

git reset --hard HEAD^
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #uncommit #commit #git
ADD COMMENT
Topic
Name
2+2 =