0 Preface/Foreword
项目开发中,经常会使用第三方的算法或者功能,那么就需要把对应的repo以子模块的方式添加到当前repo中。
添加命令:
git submodule add <URL>
1 问题表现
子模块添加成功,但是GitLab CI阶段,报错,错误内容:
fatal: could not read username for xxx: no such device or address
2 解决方法
参考文档:Gitlab CI 拉取 submodules_gitlab ci submodule-CSDN博客
需要在repository下面添加deploy token,并在主repo中的.gitmodule中添加生成的token。
2.1 子模块生成deploy token
Note:该令牌无法找回,而且只会显示一次,所以需要保存下来。