Answers for "git undo?"

15

git undo commit

# Uncommit the changes
git reset --soft HEAD~1

# Completely delete the changes
git reset --hard HEAD~1
Posted by: Guest on September-04-2020
0

git undo merge

git reset --hard HEAD~1
git reset --hard <commit_sha>
Posted by: Guest on March-05-2020

Browse Popular Code Answers by Language