[Gitlab CI/CD] fatal: could not read Username for ‘xxx‘: No such device or address
·
背景
在Gitlab Runner
中拉取代码报错。
报错信息
fatal: could not read Username for ‘xxx’: No such device or address
造成原因
我们项目用http的方式拉取代码,使用这种方式拉取代码的话需要用到账号密码。
解决办法
设置了一个变量,将remote的url修改一下。
修改前:
git remote add origin http://localhost/study/study_project.git
修改后:
git remote add origin http://username:password@localhost/study/study_project.git
创建对应的ssh-key时,是忽略密码的。之前不按照上面的方式做,也是可以正在拉取代码的。今天拉取最新的镜像重新构建项目后,修改前的方式就不行了。= =
更多推荐
已为社区贡献3条内容
所有评论(0)