方法一:通过 yum 安装(不推荐)

在 Linux 上安装 git 仅需一行命令即可搞定,对于 Centos 系统来讲,直接执行如下命令即可安装

yum install git

不过通过这种方式安装的 git 可能不是较新版的 git,以环境 centos 7 来说,这种方式安装的 git 版本为1.8.3.1。所以不建议安装旧版本。

[root@xxx ~]# git --version
git version 1.8.3.1

方法二:通过源码编译安装(推荐)

要安装新版本的 git,需要自行下载 git 源码来编译安装。

1、卸载旧版本 git

yum remove git

2、进入 Github 中的 git 版本页面 ,或者在镜像站,自行选择版本下载,我这里下载的是 git-2.30.2.tar.gz


 

3、将本地的安装包上传到 linux 服务器上,我这里放在 /home/software 目录下

4、解压压缩包,得到目录 git-2.30.2,位置在 /home/software/git-2.30.2

tar -zxvf git-2.30.2.tar.gz

5、提前安装可能需要的依赖

yum install curl-devel expat-devel openssl-devel zlib-devel gcc-c++ 
yum install perl-ExtUtils-MakeMaker automake autoconf libtool make

6、编译安装 Git

进入到 git-2.30.2 目录,执行编译安装等命令

cd git-2.30.2
make configure
./configure --prefix=/usr/local/git
make profix=/usr/local/git
make install

7、将 git 加入环境变量中,修改 /etc/profile 文件,在 profile 文件末尾追加配置内容

编辑配置文件

vim /etc/profile

末尾追加

export GIT_HOME=/usr/local/git
export PATH=$PATH:$GIT_HOME/bin

8、刷新 profile 配置文件

source /etc/profile

9、查看是否配置成功

复制复制[root@xxx git-2.30.2]# git --version
git version 2.30.2
# 配置成功!

 

转载于:Linux 下安装 Git - distance66 - 博客园

此贴为我个人学习参考借鉴记录使用,再此感谢原帖主人

GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e added ecosystem file for PM2 4 年前
5def40a3 Add host customization support for the NodeJS version 4 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐