fatal: Authentication failed for
该错误是由于git的用户名或者密码错误引起的,解决办法:
git config --system --unset credential.helper
1、配置用户信息
git config --global user.name [username]
git config --global user.email [email]
2、查询用户信息
git config --list
远端代码完全覆盖本地
git fetch --all && git reset --hard origin/master && git pull