nedf23
8/15/2013 - 5:51 PM

Ever want to undo everything that you've worked on since the last commit (including adding new files)? Here's a little alias to help with th

Ever want to undo everything that you've worked on since the last commit (including adding new files)? Here's a little alias to help with that.

alias gundo='git reset HEAD~ && git clean -df'