DEV Community

Discussion on: How to undo the last commit

Collapse
 
ghost profile image
Ghost

I do undo differently, in my ~/.gitconfig I have this alias:

[alias]
    undo = reset --soft HEAD~1
Enter fullscreen mode Exit fullscreen mode

Works great!

Collapse
 
isabelcmdcosta profile image
Isabel Costa

Awesome :) more options! I did not know about alias on git.