git操作报错remote: HTTP Basic: Access denied. The provided password or token is incorrect or ...
首先说一下我为什么会出现这个错误,今天登 git 的时候试遍了所有我能设的密码,发现都不对,然后没办法,重置密码。重置之后呢在浏览器是可以登上去了,也能看到我的项目了。然后我就尝试拉取我git上的项目(git clone xxx),这时候就报错了:
remote: HTTP Basic: Access denied.
The provided password or token is incorrect or your account has 2FA enabled and
you must use a personal access token instead of a password.
See https://gitlab.xxxxxx#error-on-git-fetch-http-basic-access-denied
意思是账号密码验证不通过,需要重新输入账号和密码,以下有几种解决方案:
1.输入下方命令后再次执行 git 操作,输入正确的账号密码即可
git config --system --unset credential.helper
2.或者输入:
git config –global http.emptyAuth true
3.再或者在下方路径下重新编辑用户名和密码:
如果出现每次提交/拉取都要再次输入密码解决方案:
执行以下代码:
git config --global credential.helper store
这样再次输入密码验证通过之后就不需要每次执行操作都输入账号和密码了