Before you can push the original repository to your new copy, or mirror, of the repository, you must create the new repository on GitHub Enterprise Serverインスタンス. 以下の例では、exampleuser/new-repository
および exampleuser/mirrored
がミラーです。
リポジトリをミラーする
- ターミナルターミナルGit Bashを開いてく� さい。
- リポジトリのベアクローンを作成します。
$ git clone --bare https://hostname/exampleuser/old-repository.git
- 新しいリポジトリをミラープッシュします。
$ cd old-repository.git $ git push --mirror https://hostname/exampleuser/new-repository.git
- 先ほど作成した一時ローカルリポジトリを削除します。
$ cd .. $ rm -rf old-repository.git
Git Large File Storage オブジェクトを含むリポジトリをミラーする
- ターミナルターミナルGit Bashを開いてく� さい。
- リポジトリのベアクローンを作成します。 ユーザ名の例をリポジトリを所有する人や Organization の名前に置き換え、リポジトリ名の例を複製したいリポジトリの名前に置き換えてく� さい。
$ git clone --bare https://hostname/exampleuser/old-repository.git
- クローンしたリポジトリに移動します。
$ cd old-repository.git
- リポジトリの Git Large File Storage オブジェクトをプルします。
$ git lfs fetch --all
- 新しいリポジトリをミラープッシュします。
$ git push --mirror https://hostname/exampleuser/new-repository.git
- リポジトリの Git Large File Storage オブジェクトをミラーにプッシュします。
$ git lfs push --all https://github.com/exampleuser/new-repository.git
- 先ほど作成した一時ローカルリポジトリを削除します。
$ cd .. $ rm -rf old-repository.git
別の� �所にあるリポジトリをミラーする
元のリポジトリから更新を取得するなど、別の� �所にあるリポジトリをミラーする� �合は、ミラーをクローンして定期的に変更をプッシュできます。
-
ターミナルターミナルGit Bashを開いてく� さい。
-
リポジトリのミラーしたベアクローンを作成します。
$ git clone --mirror https://hostname/exampleuser/repository-to-mirror.git
-
プッシュの� �所をミラーに設定します。
$ cd repository-to-mirror $ git remote set-url --push origin https://hostname/exampleuser/mirrored
ベアクローンと同様に、ミラーしたクローンにはすべてのリモートブランチとタグが含まれますが、フェッチするたびにすべてのローカルリファレンスが上書きされるため、常に元のリポジトリと同じになります。 プッシュする URL を設定することで、ミラーへのプッシュが簡� 化されます。
-
ミラーを更新するには、更新をフェッチしてプッシュします。
$ git fetch -p origin $ git push --mirror