赞
踩
在使用账号和密码的方式拉取公司GitLab代码时,遇到了以下问题
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 password.
原因: 账号启用了2FA
解决方法:必须使用个人的access token 来代替密码
操作步骤
填写Token name、Expiration date、Select scopes -》Create personal access token即可
注意生成的token在上方,请妥善保管。
原因1、下载文件过大 2、网络较慢 3、git缓存不足
解决方法
- git config -l #查看git配置信息
- git config --global http.postBuffer 524288000 #设置git缓存大小
- sudo vim ~/.bashrc
-
- 在配置文件中添加如下命令:
- export GIT_TRACE_PACKET=1
- export GIT_TRACE=1
- export GIT_CURL_VERBOSE=1
成功 !
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。