我想設置我的第一個git服務器,並遇到克隆到本地機器的問題。無法chdir或不是一個git檔案
在服務器上我也做了以下
cd /var/www/html/
mkdir my-first-repo
cd my-first-repo
touch file1.txt
git init
Initialized empty Git repository in /var/www/html/my-first-repo/.git/
然後,如果我輸入以下
git clone [email protected]:my-first-repo/.git
我收到以下錯誤消息
fatal: 'my-first-repo/.git': unable to chdir or not a git archive
fatal: The remote end hung up unexpectedly
根我的本地機器上有ssh訪問,所以我期待它工作正常。
關於如何解決這個問題的任何建議將是偉大的?
感謝
說'git clone root @ myserver:my-first-repo' - 但我認爲你只能從* bare *存儲庫克隆。 –
如果我刪除了/.git部分,我仍然收到相同的錯誤消息 – ianckc
是的...我認爲你只能克隆一個裸回購。做一個裸回購,*推*你原來的回購,然後*拉*從裸回購。 –