IDEA pull时git remote: HTTP Basic: Access denied 错误解决办法
起因
用IDEA从gitlab上pull代码下来或者进行其它git操作push等,提示:
remote: HTTP Basic: Access denied
在Setting->Version Control->GitLab 中显示账号
gitlab cannot fetch any metadata for server
解决方案一
1.在项目的文件夹中打开git bash用这个命令
git config –system –unset credential.helper
2.使用git bash命令行进行pull 或者 push操作,重新输入账号/密码刷新IDEA可更新代码
弊端:麻烦,不能直接使用IDEA进行git操作
解决方案二
登录gitlab,在Access Token选项中新建一个Access Token并在Setting->Version Control->GitLab 删除老的用户登录信息重新录入新生成的token
解决!!!
版权归原作者 star59 所有, 如有侵权,请联系我们删除。