如何在Jenkins中通过ssh-agent在Windows上直接使用git
我正在尝试更新裸git repo作为构建的一部分。在Linux上,它相对简单:
dir("/my/git/repo.git") { sshagent(['git']) {
sh "git fetch origin module:module"
}
}
但是我不知道如何在Windows上执行此操作。我试过了:
dir("c:\\my\\git\\repo.git") { withEnv(["PATH=${env.PATH};C:\\Program Files\\Git\\usr\\bin"]) {
sshagent(['git']) {
sh "git fetch origin module:module"
}
}
}
但是失败了:
Could not find ssh-agent: IOException: Cannot run program "ssh-agent": CreateProcess error=2, The system cannot find the file specifiedCheck if ssh-agent is installed and in PATH
我该怎么做?
回答:
我在以下位置看到ssh-agent:
C:\>where ssh-agentC:\tools\gits\latest\usr\bin\ssh-agent.exe
你需要确保你的%PATH%
包括(通过执行詹金斯作业的用户可以看到)Git\bin
,Git\usr\bin
,Git\mingw64\bin
。
(Git
由Git安装路径文件夹替换)
执行完一项作业(甚至失败)后,请查找“环境变量”链接:您将确切看到谁在运行作业(USERNAME
)和PATH
使用过的人。
以上是 如何在Jenkins中通过ssh-agent在Windows上直接使用git 的全部内容, 来源链接: utcz.com/qa/426732.html