Linux 安装Git


一、下载

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

Linux 安装Git

 

二、安装

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

Linux 安装Git

 

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

tar -zxvf git-2.35.2.tar.gz

 

 3、安装所需依赖

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

Linux 安装Git

yum install perl-ExtUtils-MakeMaker automake autoconf libtool make

Linux 安装Git

 

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

Linux 安装Git # 配置成功

 

 

              to be continued…

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/280095.html

(0)
上一篇 2022年8月12日
下一篇 2022年8月12日

相关推荐

发表回复

登录后才能评论