Authentication failed for 解决方案

背景

在第一次代码提交的时候,需要输入密码,但密码出错后,就会提示Authentication failed for XXX,但又没找到重新输入密码的地方。

解决方案

全局设置密码

此方法不建议使用,与因为不同平台(如github和gitee)使用的账号邮箱可能不同。

git config --global user.name [username]
git config --global user.email [email]

重新出现输入账号密码提示

如果提示没权限,win请用管理员打开终端,mac则使用sudo

git config --system --unset credential.helper

你可能感兴趣的:(Authentication failed for 解决方案)