Answers for "git revert changes in last commit"

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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language