我已经分叉了一个私有存储库,我可以在我的github上复制并创建一个新的公共存储库吗?
答案 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