Skip to content

Instantly share code, notes, and snippets.

@arekgotfryd
Created February 24, 2018 09:15
Show Gist options
  • Save arekgotfryd/dbab294703c8e09f0ada90d2bc21fc64 to your computer and use it in GitHub Desktop.
Save arekgotfryd/dbab294703c8e09f0ada90d2bc21fc64 to your computer and use it in GitHub Desktop.
Hard delete unpublished commits
# This will destroy any local modifications.
# Don't do it if you have uncommitted work you want to keep.
git reset --hard 0d1d7fc32
# Alternatively, if there's work to keep:
git stash
git reset --hard 0d1d7fc32
git stash pop
# This saves the modifications, then reapplies that patch after resetting.
# You could get merge conflicts, if you've modified things which were
# changed since the commit you reset to.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment