2014-01-13 93 views
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

非常感謝。

回答

3

git push無法創建新的存儲庫,無論通過它傳遞什麼參數。它期望在另一端找到一個已經存在的倉庫。