您现在的位置是: 网站首页> PHP PHP
Git登录账号密码错误
杨二桃
2021-05-18
【PHP】
1641人已围观
简介git push时弹框提示输入用户名密码,无论怎么输入都提示错误。
git push时弹框提示输入用户名密码,无论怎么输入都提示错误。(如图)
提示:
remote: Incorrect username or password ( access token )
fatal: Authentication failed for
直接上 干货:
连续输下面两条命令:
git config --system --unset credential.helper
git config --global credential.helper store
即可,再次git push则会让你重新输入用户名,这次不会弹框,当你输入完用户名之后,会弹框让你输入密码。
此时,输入密码之后则会成功!!!
上一篇:Git提交时记住密码
下一篇:Git命令拉取上传