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?
Asked
Active
Viewed 2.4k times
94
-
The answer is no longer correct, could you choose the correct one now? – Issac Kelly Jan 13 '11 at 19:38
-
4I 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 Answers
141
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
-
11That's great. Replacing .git suffix in your repo with .wiki, you will clone your wiki pages. – albfan Jan 04 '13 at 00:05
-
2Just for kicks and giggles, Here is the actual clone syntax. **git clone git@github.com:myusername/reponame.wiki.git** – styks Jan 15 '14 at 19:59
-
-
And as a bonus, you can branch your wiki. The only caveat is that the wiki always only shows `master`; you can't browse different wiki branches on github.com. – AgmLauncher Apr 14 '15 at 19:25
-
@Kelvin `actual` both work. Your version requires a key registered by the system in order to work. The original answer works just fine; you just have to authenticate each time. – Qix - MONICA WAS MISTREATED Jul 07 '15 at 17:21
-
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
-
Now you can - http://stackoverflow.com/questions/15080848/how-do-i-clone-a-github-wiki – Kromster Mar 17 '15 at 05:10