I deleted a page on a github repo\'s wiki.
Clicking on the link to the file now brings me to a new edit screen. I thought this might be in my fork of the repo, but foll
You can clone the wiki repo of your project, and restore that page locally.
git clone https://myusername@github.com/myusername/foobar.wiki.git
git checkout $(git rev-list -n 1 HEAD -- yourPage)^ -- yourPage
Then you push back to the wiki repo on GitHub: that should allow it to display your page again.