分叉私有存储库,复制并创建公共存储库

时间:2017-03-25 21:52:48

标签: github

我已经分叉了一个私有存储库,我可以在我的github上复制并创建一个新的公共存储库吗?

1 个答案:

答案 0 :(得分:1)

玛丽,私人叉子不能公开。您可以轻松地复制到新的存储库。

git clone --bare https://github.com/otherusername/private-repo.git
cd private-repo.git
git push --mirror https://github.com/yourname/public-repo.git
cd ..
rm -rf private-repo.git
git clone https://github.com/yourname/public-repo.git