以我为例,我试图在我的笔记本电脑组Github帐户中克隆一个私有存储库:
Yuqians-MacBook-Air:regenerateSNID yuqianliu$ git clone https://github.com/nyusngroup/velocity_CCSNe.git
Cloning into 'velocity_CCSNe'...
fatal: https://github.com/nyusngroup/velocity_CCSNe.git/info/refs?service=git-upload-pack not found: did you run git update-server-info on the server?
我发现有两种方法可以解决此问题。
(1)使用http代替https。它询问我该群组Github帐户的名称和密码。输入信息后,可以对其进行克隆。
Yuqians-MacBook-Air:regenerateSNID yuqianliu$ git clone http://github.com/nyusngroup/velocity_CCSNe.git
Cloning into 'velocity_CCSNe'...
Username for 'http://github.com':nyusngroup
Password for 'http://nyusngroup@github.com':
(2)将我的Github帐户添加到我们组Github帐户中的私有存储库的合作者中,正如上面的Monkey King的回答所指出的那样。