git安装在jenkins奴隶上

时间:2012-08-05 11:19:41

标签: git jenkins

我有Linux和Windows奴隶。我想首次在主服务器上运行git时自动在服务器上安装Git。你怎么告诉Jenkins在Win或Linux上正确安装它,如果可能的话?

1 个答案:

答案 0 :(得分:4)

基本上,您需要检查哪个git返回某些内容(如果安装了GoW -- Gnu on Windows -- commands,Windows上的哪个git.exe)。

如果失败,请参阅“Set Up Your Git Environment

在Linux上:

sudo yum install git-core       # RedHat
sudo apt-get install git-core   # Ubuntu

在Windows上:

下载并解压portable version of msysgit 您可以使用Gow中包含的curl命令编写脚本,但是为了解压缩7z存档,您可能需要Peazip installed(它也是portable installation,一个简单的zip存档)。