Delete GitHub wiki revisions
# Delete prior revisions from a GitHub wiki so that only the most-recent | |
# version of the content is available. | |
# Clone the wiki. | |
git clone https://github.com/[user]/[repo].wiki.git | |
# Remove the .git folder. | |
rm -rf .git | |
# Reconstruct the local repo with only latest content | |
git init | |
git add . | |
git commit -m "Initial commit" | |
# Push to GitHub | |
git remote add origin <github-uri> | |
git push -u --force origin master | |
This comment has been minimized.
This comment has been minimized.
To Use This On Windows Install Git Here Then You Can Execute The Commands In The Terminal |
This comment has been minimized.
This comment has been minimized.
This was really helpful. Thanks! |
This comment has been minimized.
This comment has been minimized.
Thanks! Very useful. |
This comment has been minimized.
This comment has been minimized.
Do GitHub wiki pages block force pushing to master by default? I'm unable to fast forward commit with this command in my GitHub wiki. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
How can I use this in windows, and I'm just started with github could you please help me on this ? is there any step-by-step guide ?