Git のバンドルファイル
git clone
でホスティング先から clone できないような場合にバンドルファイルを作成して共有することができる。
git bundle create repo.bundle HEAD main
でバンドルファイルを作成する。
ファイルをもらった側は
git clone repo.bundle repo
でホスティング先から clone したのと同じように Git リポジトリを復元できる。
Read other posts
git clone
でホスティング先から clone できないような場合にバンドルファイルを作成して共有することができる。
git bundle create repo.bundle HEAD main
でバンドルファイルを作成する。
ファイルをもらった側は
git clone repo.bundle repo
でホスティング先から clone したのと同じように Git リポジトリを復元できる。