情况:
我正在遵循这个教程:
https://cloud.google.com/nodejs/tutorials/bookshelf-on-compute-engine
当我到达这里:
代码:
git commit -am "Updating configuration"
git config credential.helper gcloud.sh
git remote add cloud https://source.developers.google.com/p/[YOUR_PROJECT_ID]/
git push cloud
错误:
我得到以下错误:
fatal: remote error: Forbidden
问题:
我该如何解决这个问题?
第页。S.:我确实做过:gcloud auth application-default login
添加远程时,请确保使用repo的完整URL,如您的存储库集中所列https://console.cloud.google.com/code/develop/repo?project=【项目】
例如:
git commit -am "Updating configuration"
git config credential.helper gcloud.sh
git remote add cloud https://source.developers.google.com/p/[PROJECT]/r/[REPO]
git push cloud
gcloud auth application-default login
命令获取用于应用程序默认凭据的用户凭据。谷歌客户端库在您自己的应用程序中严格使用这些凭据。它们不用于gcloud CLI或git-credential-gcloud.sh
脚本进行的任何API调用。
请改用gcloud auth login
命令。