Answers for "how to revert changes to last commit in git"

41

roll back last commit in git

git reset --soft HEAD~1
Posted by: Guest on March-30-2020
0

git revert changes in last commit

# by "undo changes" I mean undo commit
# undo changes in last commit, and keep them staged
git reset --soft HEAD~1

# undo changes in last commit, and keep them unstaged
git reset --hard HEAD~1
Posted by: Guest on August-11-2021
2

how to revert to last git commit

git checkout . #This will get rid of all uncommited change
Posted by: Guest on December-21-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language