undo in git code example
Example 1: undo commit
# KEEP CHANGES
git reset --soft HEAD~1
# REMOVE CHANGES
git reset --hard HEAD~1
Example 2: git undo add
// undo add for one file
git reset <file>
// undo add for all files
git reset
Example 3: git reflog reset
git reset HEAD@{1}