DEV Community

Discussion on: Resume your Work with Git

Collapse
 
jonhaddow profile image
Jon Haddow

I find git show works well for me if I want to look through what I last did.

Collapse
 
neilcodes profile image
Neil

git whatchanged is also super useful for seeing a quick overview of the most recent commits on the branch.

Collapse
 
juristr profile image
Juri Strumpflohner

Oh yes, definitely. Those would be very viable alternatives. With the git reset command you really take out the commit again and you resume your work as if you'd never have committed it. Obviously I don't want to do that always, so thx for those two alternatives people might find useful as well 🙂