1. git push/pull
报权限错误:HTTP Basic: Access denied and fatal Authentication
报这个错误一般是因为更改了账号密码导致的,解决办法如下:
-
终端
cd
到工程目录,输入git config --system --unset credential.helper
, 运行,输入账号更改后的正确密码即可解决此问题; -
如果输入
git config --system --unset credential.helper
后报could not lock config file /etc/gitconfig: Permission denied
的错误,在命令前加sudo
即可,即运行sudo git config --system --unset credential.helper
。
Stack Overflow 对应的问题及解决方案链接
GitLab remote: HTTP Basic: Access denied and fatal Authentication
网友评论