ZelluX
ZelluX

Reputation: 72585

Can I checkout github wikis like a git repository?

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?

Upvotes: 94

Views: 23838

Answers (2)

Max Masnick
Max Masnick

Reputation: 3287

You can now!

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

or if you use ssh

git clone [email protected]:username/project.wiki.git

Upvotes: 141

seth
seth

Reputation: 37267

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.

Upvotes: 2

Related Questions