Show HN: Git uncommit – reset unpushed, committed changes
github.com/below43Equivalent of "git reset --soft HEAD~1". Got sick of googling it every time with my goldfish memory.
Just a brew package at this point, but feel free to suggest alternatives.
Comments
From "How core Git developers configure Git" https://news.ycombinator.com/item?id=43179071 :
You can do an alias.
Good point. TIL :)
git config --global alias.uncommit 'reset --soft HEAD~1'