1. ホーム
  2. ギズーブ

[解決済み】BitbucketからGitHubにすべてのブランチを含むGitリポジトリを移動するにはどうすればよいですか?

2022-04-14 17:35:12

質問

Bitbucket から GitHub に、すべてのブランチと完全な履歴を持つ Git リポジトリを移動する最良の方法は何ですか?

スクリプトや使用するコマンドのリストはありますか?

解決方法を教えてください。

GitHubのページ(")を参照することができます。 リポジトリの複製 となります。

使用しています。

それは与えるだろう。

git clone --mirror https://bitbucket.org/exampleuser/repository-to-mirror.git
# Make a bare mirrored clone of the repository

cd repository-to-mirror.git
git remote set-url --push origin https://github.com/exampleuser/mirrored
# Set the push location to your mirror

git push --mirror

特記事項 コメント中 による L S :