Linux系统中怎么安装Git

2025-05-22 05:50:11
推荐回答(1个)
回答(1):

1、yum方式安装 # yum -y install git 如果提示系统提示没有找到git包,可以采用下面的方式 2、下载Git源码包 官网:http://git-scm.com/ $ tar -xjvf git-1.7.4.1.tar.bz2 $ cd git-1.7.4.1/ $ make prefix=/usr/local all $ make prefix=/usr/...