git undo soft reset code example
Example 1: git reset soft
git reset --soft
Example 2: how to abandon changes and go last commit
#ignore all changes, and back to last commit
git add .
git stash
git reset --soft
#ignore all changes, and back to last commit
git add .
git stash