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 [email protected]:cc13e0fcf2c348cc126f918e4a3917eb.git
Treat it like a normal repo. Edit, force push, etc.
When you are ready, you will need to force push as the remote has newer commits:
git push -f origin master
Want to revert the last change?
git reset --hard HEAD~1 && git push -f origin master
Yay! You reverted!
This is excellent! I also didn't think of gists as normal git repos. I'm sure it's clear to everyone but in case you're a newbie like me and just assumed you'd never heard of
git glone
there is a typo above. It should be just: