Skip to content

Instantly share code, notes, and snippets.

View migval's full-sized avatar

Miguel migval

  • Freelance Full Stack Developer
  • Madrid - Spain
View GitHub Profile
@JeffreyWay
JeffreyWay / tip.sh
Created August 15, 2013 17:51
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'