この投稿で出来ること
- gitのブランチ・コミットのコピー
出来ないこと
- PRのコピー
- issueのコピー
その他
- 元ブランチには影響ありません
実践
- 移行先のリポジトリを作成しておく
iOS-App
など - localに適当なディレクトリを作ってコピーの元をclone
$ git clone --mirror (移行元)https://github.com/hoge.git
- localに
hoge.git
が出来ているのでその中に移動
$ cd hoge.git
- 移行先にpushする
$ git push --mirror (移行先)https://github.com/iOS-App.git
done