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:
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.