Skip to content

Instantly share code, notes, and snippets.

@KuKuXia
Forked from eduncan911/Revert-Gist.md
Created June 3, 2019 01:13
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 KuKuXia/f8a3f71c7c255ef5c1d9de72a9654911 to your computer and use it in GitHub Desktop.
Save KuKuXia/f8a3f71c7c255ef5c1d9de72a9654911 to your computer and use it in GitHub Desktop.
Revert Gist Commits

Revert / Undo a Gist Commit

It was not exactly obvious. Here's how to revert a Gist commit!

Checkout the gist like a normal git repo:

# replace the Gist ID with your own
git clone git@github.com:cc13e0fcf2c348cc126f918e4a3917eb.git

Treat it like a normal repo. Edit, force push, etc.

Force Push

When you are ready, you will need to force push as the remote has newer commits:

git push -f origin master

Example: Revert the last commit to your Gist

Want to revert the last change?

git reset --hard HEAD~1 && git push -f origin master

Yay! You reverted!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment