标签:user 遇到 密码 用户 仓库 global rem mail sys
push远程仓库遇到报错
remote: Invalid username or password.
fatal: Authentication failed
1、首先配置用户信息
git config --global user.name [username]
git config --global user.email [email]
2、查询用户信息
git config --list
然后
3、如果push遇到在输入密码后会报这个错误fatal: Authentication failed for的话
解决办法:
git config --system --unset credential.helper
重新输入账号密码
git push 遭遇 fatal: Authentication failed
标签:user 遇到 密码 用户 仓库 global rem mail sys
原文地址:https://www.cnblogs.com/xujinglog/p/13214677.html