“Please generate new Identifier” error when pushing to cloud services using Android studio

后端 未结 6 1218
粉色の甜心
粉色の甜心 2021-02-06 05:40

I successfully import the project to google cloud. I am running android studio on a Mac. But, when i try to push the project to the cloud repository i get the error:

6条回答
  •  星月不相逢
    2021-02-06 06:12

    Assuming you have previously set up your repository as described on this Cloud Source Repositories guide, you may want to try adding your repository as a remote. As described on this second part of the guide, running the credential helper script may solve your remote error:

    • git config credential.helper gcloud.sh

    Alternatively, adding a .netrc file may be enough to get you going as long you have the following text included in it: (more information can be found on your provided link)

    • machine source.developers.google.com login [your email address] password [Git password]

    Lastly, make sure no source.developers.google.com cookies are included in your Git client by following the “Instructions for Removing Cookies” provided in your same link.

提交回复
热议问题