Undo Git Commit and Commit again

By @tomas-petrauskas2/17/2020git

a29gsi.png

If you accidentally commit locally, for example:
git commit -m "Fix AppSettings"

You could always go back by moving head.
This command will undo commit and unstage all files.
git reset --soft HEAD~

You could edit files, add only add those which you prefer to commit:
git add .

git commit -m "Fix AppSettings" or use variable git commit -c ORIG_HEAD

16

comments