2017-03-25 2 views

Antwort

0

Mary, private Gabeln können nicht veröffentlicht werden. Sie können jedoch leicht in ein neues Repository kopieren.

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 
Verwandte Themen