Answers for "how to revert back to the last commit git"

33

roll back last commit in git

git reset --soft HEAD~1
Posted by: Guest on March-30-2020
1

how to revert to last git commit

git checkout . #This will get rid of all uncommited change
Posted by: Guest on December-21-2021
1

revert last commit git

$ git commit -m "Something terribly misguided" # (0: Your Accident)
$ git reset HEAD~                              # (1)
[ edit files as necessary ]                    # (2)
$ git add .                                    # (3)
$ git commit -c ORIG_HEAD                      # (4)
Posted by: Guest on February-15-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language