github push 错误fatal: Authentication failed for...

在用Git Bash提交时发生错误,错误提示:fatal: Authentication failed for 'https://github.com/...'

错误提示如图:

github push 错误fatal: Authentication failed for..._第1张图片


解决办法:重新配置用户名和邮箱即可

git config --global user.name "names"
git config --global user.email "[email protected]"

 

你可能感兴趣的:(Linux,github,git)