ドキュメントには頻繁に更新が加えられ、その都度公開されています。本ページの翻訳はまだ未完成な部分があることをご了承ください。最新の情報については、英語のドキュメンテーションをご参照ください。本ページの翻訳に問題がある場合はこちらまでご連絡ください。
記事のバージョン: Enterprise Server 2.15

このバージョンの GitHub Enterprise はこの日付をもって終了となります: このバージョンの GitHub Enterprise はこの日付をもって終了となりました: 2019-10-16. 重大なセキュリティの問題に対してであっても、パッチリリースは作成されません。 For better performance, improved security, and new features, upgrade to the latest version of GitHub Enterprise. For help with the upgrade, contact GitHub Enterprise support.

リポジトリを複製する

フォークせずにリポジトリを複製するため、特別なクローンコマンドを実行して、新しいリポジトリにミラープッシュすることができます。

リポジトリを複製してリポジトリの新しいコピー、つまりミラーにプッシュできるようにするには、その前に 使用している GitHub Enterprise Serverインスタンス に新しいリポジトリを作成する必要があります。 以下の例では、exampleuser/new-repository および exampleuser/mirrored がミラーです。

リポジトリをミラーする

  1. ターミナルターミナルGit Bashターミナル を開いてください。

  2. リポジトリのベアクローンを作成します。

    $ git clone --bare https://hostname/exampleuser/old-repository.git
  3. 新しいリポジトリをミラープッシュします。

    $ cd old-repository.git
    $ git push --mirror https://hostname/exampleuser/new-repository.git
  4. ステップ 1 で作成した一時ローカル リポジトリを削除します。

    $ cd ..
    $ rm -rf old-repository.git

Mirroring a repository that contains Git Large File Storage objects

  1. ターミナルターミナルGit Bashターミナル を開いてください。

  2. リポジトリのベアクローンを作成します。 ユーザ名の例をリポジトリを所有する人や Organization の名前に置き換え、リポジトリ名の例を複製したいリポジトリの名前に置き換えてください。

    $ git clone --bare https://hostname/exampleuser/old-repository.git
  3. クローンしたリポジトリに移動します。

    $ cd old-repository.git
  4. リポジトリの Git Large File Storage オブジェクトをプルします。

    $ git lfs fetch --all
  5. 新しいリポジトリをミラープッシュします。

    $ git push --mirror https://hostname/exampleuser/new-repository.git
  6. リポジトリの Git Large File Storage オブジェクトをミラーにプッシュします。

    $ git lfs push --all https://github.com/exampleuser/new-repository.git
  7. ステップ 1 で作成した一時ローカル リポジトリを削除します。

    $ cd ..
    $ rm -rf old-repository.git

Mirroring a repository in another location

If you want to mirror a repository in another location, including getting updates from the original, you can clone a mirror and periodically push the changes.

  1. ターミナルターミナルGit Bashターミナル を開いてください。

  2. リポジトリのミラーしたベアクローンを作成します。

    $ git clone --mirror https://hostname/exampleuser/repository-to-mirror.git
  3. プッシュの場所をミラーに設定します。

    $ cd repository-to-mirror.git
    $ git remote set-url --push origin https://hostname/exampleuser/mirrored

As with a bare clone, a mirrored clone includes all remote branches and tags, but all local references will be overwritten each time you fetch, so it will always be the same as the original repository. プッシュする URL を設定することで、ミラーへのプッシュが簡素化されます。 ミラーを更新するには、更新をフェッチしてプッシュします。

$ git fetch -p origin
$ git push --mirror

担当者にお尋ねください

探しているものが見つからなかったでしょうか?

弊社にお問い合わせください