Попытка перенести репо на новый сервер с помощью git clone --mirror. Но при толкании происходит сбой с remote: fatal: git cat-file: could not get object info
Вот мои шаги:
git clone --mirror oldRepoUrl
cd old cloned repo
git remote add newRepoName newRepoUrl
git push -f --tags newRepoName refs/heads/*:refs/heads/*
Назначение - новый пустой репо.
Вот ошибка, которую я получаю:
remote: System hooks checking refs/heads/master
remote: fatal: git cat-file: could not get object info
remote: fatal: git cat-file: could not get object info
remote: warn: committer emails ["email1@mail.com",...etc multiples] are not found in Github
Может ли это быть из-за коммиттеров, которые больше не являются частью проекта? Или что-то еще?
Спасибо!