fork, clone and push a wiki in github
我搜索这个问题很多次,但仍然无法解决它。
假设我从用户1中派生出一个repo(名称为repo1),现在我也要派生repo1的wikipage,当你派生repo时,Github不会为你做这个。
我尝试过:
1 2 3 | git clone https://github.com/user1/repo1.wiki.git git remote add my-fork https://github.com/myid/repo1.wiki.git git push my-fork master |
但是终点站说:
1 | fatal: remote error: access denied or repository not exported: /3/nw/32/2b/9e/135236793/71478887.wiki.git |
号
这意味着我不能成功地将这个本地wiki推到我的分叉repo的wikipage上。
有人知道这里发生了什么吗?
谢谢。
PS:带有自定义wiki的fork-github项目
您需要先在GitHub帐户中创建wiki打开浏览器
1 | https://github.com/myid/repo1/wiki |
按"创建第一页"并保存它。现在你可以推了(第一次推应该是-f)
1 | git push my-fork -f |
号