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
重新输入账号密码