[Git] Fork a public repo to private

git clone –bare https://github.com/%5BPUBLIC%5D.git –recursive
cd [PUBLIC].git/
git push –mirror https://github.com/%5BPRIVATE%5D.git
git remote -v
rm -rf [PUBLIC].git/
git clone https://github.com/%5BPRIVATE%5D.git –recursive
git remote -v
git remote add public https://github.com/%5BPUBLIC%5D.git

To fork as public…

https://help.github.com/articles/fork-a-repo/

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.