我正试图从谷歌云存储库将远程存储库克隆到本地存储库。我正在Kubuntu 14.04系统上工作
首先,我使用创建了一个空的本地git存储库
git init test
然后我尝试了以下命令
cd test
git pull https://source.developers.google.com/p/{project_id}
Username for 'https://source.developers.google.com': #########
Password for 'https://########@source.developers.google.com':
但我得到以下错误:
致命:
https://source.developers.google.com/p/{project_id}/
的身份验证失败
Username
和password
是正确的,我试图在SO
上找到解决方案,但它是关于GITHUB
而不是Google cloud repository
的。
任何帮助都将不胜感激。
使用此命令克隆
git clone https://source.developers.google.com/p/{project_id}
您也可以参考下面的链接以了解更多信息:https://help.ubuntu.com/lts/serverguide/git.html