报错信息
# 在使用`download-git-repo`下载仓库代码时报错信息
'git clone' failed with status 128
Response code 404 (Not Found)
connect ETIMEDOUT
# 运行`git clone`的报错信息
remote: HTTP Basic: Access denied
fatal: Authentication failed for
处理
download-git-repo报错
Response code 404 (Not Found)
这个错误,基本锁定是链接配置有误
'git clone' failed with status 128
,git的凭证有问题(下面有修改方法),或者地址解析错误(尤其是局域网网址)
connect ETIMEDOUT
一般是网络超时,可以直接再试一次,不行就检查下面注意事项
// 参考链接 https://github.com/lydxwj/utils
download('lydxwj/utils', 'test', () => {})
download('github:lydxwj/utils', 'test', () => {})
- 尽量不要配置clone: true(github,gitlab等公开库),很容易出现128(git账号配置不是公开库账号时)
// 局域网的gitlab,参考链接 http://mygitlab.com/lydxwj/utils
// 对应的ip地址 http://192.168.10.10/lydxwj/utils
download('direct:http://192.168.10.10/lydxwj/utils.git', 'test', {clone: true} () => {})
- 不要使用局域网网址,直接写ip,不然也会报128
- 需要配置
clone: true
,网址上面最好加上后缀.git
git报错
remote: HTTP Basic: Access denied
是git的凭证有问题
方法1:控制面板=>用户帐户=>凭据管理器=>找到对应的git:
开头的进行编辑修改密码
方法2:管理员身份打开命令行工具=>git config --system --unset credential.helper
=>需要重新输入账号密码登录