How do I clone a GitHub wiki?

廉价感情. 提交于 2019-11-27 02:44:13
joseph.hainline

Append .wiki.git to the repository name.

That is, if your repository name was foobar:

git clone git@github.com:myusername/foobar.git would be the path to clone your repository

and

git clone git@github.com:myusername/foobar.wiki.git would be the path to clone its wiki.

The Wiki pages are managed as a repository. So click on your repository, then on the left side click on Wiki. Finally on the upper right corner click on Clone Repository. There you will clear instructions on how to clone it correctly.

Neeraj Bansal

The syntax for cloning Github wiki repository is:

git clone [RepositoryName].wiki.git

If it's a private repository, then you'll prompted to enter your username/password.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!