我正在创建Jenkins管道。
但是在管道中,当我选择Git并提供存储库时,出现以下错误
无法连接到存储库:执行命令时出错:git ls-remote -hhttps://github.com/trushant-dw/aushitosh.gitHEAD
我已将我的git凭据添加到全球凭据中,但仍不确定为什么会引发此错误。
下面是我的管道
node {
stage 'Checkout'
git '[email protected]:trushant-dw/dockerwebapp.git'
stage 'Docker build'
docker.build('demo-docker')
stage 'Docker push'
docker.withRegistry('https://944198216610.dkr.ecr.us-east-
1.amazonaws.com', 'ecr:us-east-1:demo-ecr-credentials') {
docker.image('demo').push('latest')
}
}
我在jenkins服务器中安装了git。
$yum install git
$which git
/usr/lib/git
然后在Manage Jenkins ---> Global config tools -----> Git中,我添加了路径。它对我有用。