git push 提交操作出现 fatal: Authentication failed for 错误 解决方案
场景描述
通常我们在日常开发时一般使用记住git密码功能,但是如果密码输入错误了就不会再弹出输入密码框了。
git add . ; git commit -m ‘laoji.org ‘ ; git push
On branch master
Your branch is ahead of ‘origin/master’ by 1 commit.
(use “git push” to publish your local commits)
nothing to commit, working tree clean
remote: Coding 提示: Authentication failed.
remote: 认证失败,请确认您输入了正确的账号密码。
配置用户信息
git config --global user.name [username]
git config --global user.email [email]
查询用户信息
git config --list
3、如果push遇到在输入密码是熟错后,就会报这个错误fatal: Authentication failed for
解决办法( 请使用管理员运行 )
git config --system --unset credential.helper
之后你在push就会提示输入名称和密码
如不使用管理员运行可能会出现如下错误:
error: could not lock config file C:/Program Files/Git/mingw64/etc/gitconfig: Permission denied
作者:阿笨
【官方QQ一群:跟着阿笨一起玩NET(已满)】:422315558
【官方QQ二群:跟着阿笨一起玩C#(已满)】:574187616
【官方QQ三群:跟着阿笨一起玩ASP.NET(已满)】:967920586
【官方QQ四群:Asp.Net Core跨平台技术开发(可加入)】:829227829
【官方QQ五群:.NET Core跨平台开发技术(可加入)】:647639415
【网易云课堂】:https://study.163.com/provider/2544628/index.htm?share=2&shareId=2544628
【腾讯课堂】:https://abennet.ke.qq.com
【51CTO学院】:https://edu.51cto.com/sd/66c64
【微信公众号】:微信搜索:跟着阿笨一起玩NET