美文网首页
2023-05-05

2023-05-05

作者: 懂你的 | 来源:发表于2023-05-04 09:42 被阅读0次

    安装新版本android studio后,git报错:

    Fatal: could not read Password for 'https://username@*.com': Device not configured

    但是发现通过命令行可以正常使用git。需要做的是保存用户名、邮箱、和密码。

    git config --global user.name "myname"

    git config --global user.email "mayname.company.com"

    git config --global credential.helper store

    然后使用一次后,android studio中就可以正常使用了。

    相关文章

      网友评论

          本文标题:2023-05-05

          本文链接:https://www.haomeiwen.com/subject/gsrxsdtx.html