revert to last commit in git code example
Example 1: roll back last commit in git
git reset --soft HEAD~1
Example 2: how to revert a commit
git reset --soft HEAD@{1}
git reset --hard HEAD@{1}
git push --force origin master
Example 3: revert last commit
$ git reset --soft HEAD~1
Example 4: revert last commit
git reset HEAD~
Example 5: revert last commit git
$ git commit -m "Something terribly misguided"
$ git reset HEAD~
[ edit files as necessary ]
$ git add .
$ git commit -c ORIG_HEAD
Example 6: how to abandon changes and go last commit
git add .
git stash