Fixed How to uncommit my last commit in git #dev #it #asnwer
Fixed How to uncommit my last commit in git #dev #it #asnwer
How to uncommit my last commit in git
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.
Answer: How to uncommit my last commit in git
git reset hard HEAD^
note: if you’re on windows you’ll need to quote the HEAD^ so
git reset hard "HEAD^"
Answer: How to uncommit my last commit in git
It’s the latter.
git reset hard HEAD^
View On WordPress











