系统相关
首页 > 系统相关> > Linux 安装Git

Linux 安装Git

作者:互联网

一、下载

镜像站:https://mirrors.edge.kernel.org/pub/software/scm/git/,自行选择版本下载,我这里下载的是 git-2.35.2.tar.gz

 

二、安装

1、将下载的包传至服务器(自己创建的任意文件夹)

 

2、解压(进入包所在目录)

tar -zxvf git-2.35.2.tar.gz

 

 3、安装所需依赖

yum install curl-devel expat-devel openssl-devel zlib-devel gcc-c++ 

yum install perl-ExtUtils-MakeMaker automake autoconf libtool make

 

4、编译安装Git(执行如下命令)

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

 

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

编辑配置文件

vim /etc/profile

末尾追加

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

刷新 profile 配置文件

source /etc/profile

 

6、查看配置是否成功

git --version

 # 配置成功

 

 

              to be continued...

标签:profile,git,local,make,devel,Git,Linux,安装
来源: https://www.cnblogs.com/TSmagic/p/16578745.html