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

后端 未结 6 1219
粉色の甜心
粉色の甜心 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 05:54

    I have faced same problem but finally solved the issue after executing following commands. Such type of issue can arise when you by mistakenly enter invalid credential at first time. so it caches the credential entered at first time. 
    
    git config --global --unset credential.helper
    git config --system --unset credential.helper
    git config --global credential.helper manager
    

提交回复
热议问题