94

I want to modify and view github wikis with local editor like Emacs, and Google Code wikis can be checked out just like code. Is there any way to checkout github wikis? Or is there any other git repository provider offers such feature?

ZelluX
  • 69,107
  • 19
  • 71
  • 104
  • The answer is no longer correct, could you choose the correct one now? – Issac Kelly Jan 13 '11 at 19:38
  • 4
    I think this is related to programming (ableit tangentially) since I like to support my programming projects on github with wikis. Both need flexible SCM so it makes sense. The way to do this is just to go to the github page and click the "Clone URL" button. The wiki address is the same as the github site with ".wiki.git" appended. Use the standard git clone command to get a local copy for editing. – Ed Ost Sep 12 '13 at 14:04
  • 13
    "closed as off-topic". *rolls eyes* – Thomas Dec 12 '14 at 05:31

2 Answers2

141

You can now!

git clone https://github.com/user/project.wiki.git

or if you use ssh

git clone git@github.com:username/project.wiki.git
Arkku
  • 41,011
  • 10
  • 62
  • 84
Max Masnick
  • 3,277
  • 2
  • 27
  • 28
2

You can't check out the wiki but you can set up a website that you can checkout and edit that gets regenerated on a push.

They call it GitHub Pages. Admittedly, not the same as a wiki though.

seth
  • 36,759
  • 7
  • 60
  • 57