git changes since last commit code example
Example 1: how do i get the last commit
$ git reset --soft HEAD~1
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 HEAD~1
#ignore all changes, and back to last commit
git add .
git stash