GIT 身份验证失败问题解决方案,由于修改密码产生的问题

fatal: Authentication failed for 'http:xxxxxxxxxx.git/'
解决方案 

1. git config --global user.name "username"
git config --global user.email "email",弊端好像无法解决问题
 
2. git config --system --unset credential.helper,弊端需要每次都输入密码
 
3.控制面板-用户账户-凭证管理器-普通凭证,把里面的git密码修改删除就好
原文地址:https://www.cnblogs.com/ChineseLiao/p/9400191.html