Skip to content

Instantly share code, notes, and snippets.

View reireynoso's full-sized avatar

Reinald Reynoso reireynoso

View GitHub Profile
@HashNuke
HashNuke / gist:608259
Created October 3, 2010 04:13
to undo push and commits
# to undo a git push
git push -f origin HEAD^:master
# to get to previous commit (preserves working tree)
git reset --soft HEAD
# to get back to previous commit (you'll lose working tree)
git reset --hard HEAD^