Skip to content

Instantly share code, notes, and snippets.

@kaushik94
Last active March 30, 2016 00:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kaushik94/51ad7822452ddc43616dfa5ea84baa8f to your computer and use it in GitHub Desktop.
Save kaushik94/51ad7822452ddc43616dfa5ea84baa8f to your computer and use it in GitHub Desktop.
git essentials
# 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.
# 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