Назад | Перейти на главную страницу

Как я могу получить «зеркальное отображение» в репозитории GitHub?

Я заметил, что https://github.com/apache/ant говорит: «Отражено с git: //git.apache.org/ant.git» (со ссылкой), и я хотел бы сделать то же самое.

https://exyr.org/2011/git-mirrors/ кажется хорошим описанием общей техники (в основном это работа cron), но я получаю некоторые странные ошибки, и я не вижу "зеркально отражено" в https://github.com/pdurbin/openscholar (судьба). Я бы хотел, чтобы источник зеркала был https://github.com/openscholar/openscholar

Вот (обрезанный) результат, который я вижу:

murphy:~ pdurbin$ cd /tmp
murphy:tmp pdurbin$ git clone --mirror https://github.com/openscholar/openscholar.git
Cloning into bare repository 'openscholar.git'...
remote: Counting objects: 167069, done.
remote: Compressing objects: 100% (51806/51806), done.
remote: Total 167069 (delta 112936), reused 166304 (delta 112255)
Receiving objects: 100% (167069/167069), 82.77 MiB | 650 KiB/s, done.
Resolving deltas: 100% (112936/112936), done.
murphy:tmp pdurbin$ cd openscholar.git
murphy:openscholar.git pdurbin$ git remote add github git@github.com:pdurbin/openscholar.git
murphy:openscholar.git pdurbin$ git fetch -q && git push -q --mirror github
remote: error: hook declined to update refs/pull/1001/head
remote: error: hook declined to update refs/pull/1001/merge
(snip)
remote: error: hook declined to update refs/pull/957/head
remote: error: hook declined to update refs/pull/957/merge
To git@github.com:pdurbin/openscholar.git
 * [new branch]      1017 -> 1017
(snip)
 * [new branch]      origin/SCHOLAR-3.x-make-1072 -> origin/SCHOLAR-3.x-make-1072
 * [new tag]         SCHOLAR-2-0-BETA1 -> SCHOLAR-2-0-BETA1
(snip)
 * [new tag]         SCHOLAR-3.1.6 -> SCHOLAR-3.1.6
 ! [remote rejected] refs/pull/1001/head -> refs/pull/1001/head (hook declined)
 ! [remote rejected] refs/pull/1001/merge -> refs/pull/1001/merge (hook declined)
(snip)
 ! [remote rejected] refs/pull/957/head -> refs/pull/957/head (hook declined)
 ! [remote rejected] refs/pull/957/merge -> refs/pull/957/merge (hook declined)
error: failed to push some refs to 'git@github.com:pdurbin/openscholar.git'
murphy:openscholar.git pdurbin$ 

Что касается сообщений об ошибках в вашем выводе:

Вы можете исключить ссылки запросов на вытягивание из своего зеркала. У меня недавно была аналогичная проблема, но наоборот (GitHub в качестве источника вместо цели), но похоже, что это может быть связано:

http://christoph.ruegg.name/blog/2013/1/26/git-howto-mirror-a-github-repository-without-pull-refs.html

Я считаю, что ceejayoz был прав, говоря о том, что персонал GitHub нуждается в помощи. Они предложили просто настроить заполнитель, что я сделал на https://github.com/iqss/openscholar

В нем нет «зеркала», которое я изначально искал, но мы можем жить без него.