「.NET 開発基盤部会 Wiki」は、「Open棟梁Project」,「OSSコンソーシアム .NET開発基盤部会」によって運営されています。
通常、Public RepositoryとPrivate Repository間ではPull Requestを送信できない。
裏技的方法として、以下の手順で ≒ の事を実現できる。
git clone --bare https://github.com/exampleuser/public-repo.git cd public-repo.git git push --mirror https://github.com/yourname/private-repo.git※ mirror後、cloneしたローカルのPublic Repositoryは削除してしまってOK。
cd private-repo git remote add public https://github.com/exampleuser/public-repo.git git pull public master # Creates a merge commit git push origin master
※ TortoiseGitでは「任意のURL」を使用すれば、Repository間で同期(pull&push)できる。