0
我分叉了一個私有存儲庫,我可以在我的github上覆制並製作一個新的公共存儲庫 ...?分叉的私人存儲庫,複製並公開存儲庫
我分叉了一個私有存儲庫,我可以在我的github上覆制並製作一個新的公共存儲庫 ...?分叉的私人存儲庫,複製並公開存儲庫
瑪麗,私人叉不能公開。儘管你可以很容易地複製到一個新的倉庫。
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
你爲什麼不試試,而不是問? –