如何克隆我的 GitHub 存储库的 wiki?我知道它被保存为一个单独的 Git 存储库,但我不记得路径了。
我试过...reponame/wiki.gitand ...reponame.git/wiki,但都不正确。
...reponame/wiki.git
...reponame.git/wiki
将.wiki.git附加到存储库名称。
也就是说,如果您的存储库名称是foobar:
git clone git@github.com:myusername/foobar.git将是克隆存储库的路径
git clone git@github.com:myusername/foobar.git
和
git clone git@github.com:myusername/foobar.wiki.git将是克隆其 wiki 的路径。
git clone git@github.com:myusername/foobar.wiki.git
注意:您必须至少拥有一页才能克隆 wiki 存储库。(通过@tobiasz-cudnik)