If I fork repository joe/foo
, and it has a Wiki, I won\'t get the wiki. Right now I\'m just interested in forking the wiki to add pages to it.
In June 2019, here's how I did that:
git clone https://github.com/org-a/project-x.wiki.git
https://github.com/org-b/project-x
, add the new remote to the wiki repo: git remote add fork https://github.com/org-b/project-x.wiki.git
git push -f fork master
Great. Now you have forked a repo and its wiki.
(By the way, Github should do this automatically, right?)