1
我用git clone --mirror https://server-A/foo-repo.git
從服務器A克隆了一個回購。現在我需要將此回購推送到服務器B.服務器B沒有創建該回購。我的推送命令是這樣的:git push --mirror [email protected]:some-name/foo-repo.git
。`git push --mirror`可以創建一個新的回購?
不幸的是,我得到了如下錯誤推後:
ERROR: Repository not found.
fatal: The remote end hung up unexpectedly
那麼,這是否意味着必須存在於服務器B回購協議,以便推動工作?如果是這樣,那麼問題是我如何創建一個回購作爲用戶git
?
非常感謝。