目前我正在試圖從GitHub克隆,和我遇到了一個錯誤:Github上克隆致命遠程錯誤
git clone git://github.com/StevenHickson/PiAUISuite.git
Cloning into 'PiAUISuite'
fatal: remote error:
repository not found.
如何去克隆呢?
目前我正在試圖從GitHub克隆,和我遇到了一個錯誤:Github上克隆致命遠程錯誤
git clone git://github.com/StevenHickson/PiAUISuite.git
Cloning into 'PiAUISuite'
fatal: remote error:
repository not found.
如何去克隆呢?
您不能使用SSH連接(GIT://協議,將[email protected]啄)這個特定庫,因爲這是不允許的,因爲我們可以在github page.
看使用HTTPS link。
git clone https://github.com/StevenHickson/PiAUISuite.git
現在,當我這樣做時,它說它是克隆然後突然停止。 – user3341402
pi @ raspberrypi〜$ git clone https://github.com/StephenHickson/PiAUISuite.git 克隆到'PiAUISuite'中... pi @ raspberrypi〜$ – user3341402
啊!我設法做到了(不完全確定如何),但無論如何感謝。 – user3341402
我upvoted的問題,因爲當初學者使用Git開始,他的眼睛不是用來SSH存儲庫的路徑'SSH://[email protected]:用戶名/ repo.git',很容易混淆於https:// github.com/username/repo.git' –