VS2017 GIT推送错误:Authentication failed解决办法

如果push遇到在输入密码是熟错后,就会报这个错误fatal: Authentication failed for xxxxxx

解决办法:

团队资源管理器-同步-操作-打开命令提示符,输入下面命令:

  git config --system --unset credential.helper

之后使用命令提交Commit记录:

  git push origin master

执行之后会让你输入账号密码,输入正确的账号密码即可推送成功!

原文地址:https://www.cnblogs.com/hua997/p/13158458.html