Can I checkout github wikis like a git repository?

前端 未结 2 2025
感情败类
感情败类 2020-12-12 20:14

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 i

相关标签:
2条回答
  • 2020-12-12 20:31

    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.

    0 讨论(0)
  • 2020-12-12 20:40

    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
    
    0 讨论(0)
提交回复
热议问题