CentOS 7 下搭建 Git 环境

查看是否已经安装过 git

[root@centos] git --version
git version 1.8.3

卸载旧版 git

[root@centos] yum remove git

安装方式一:yum 安装

[root@centos] yum -y install git

安装方式二:源码安装:

安装依赖包(根据实际情况安装,有些可能已经安装过来):

[root@centos] yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel
[root@centos] yum install gcc-c++ perl-ExtUtils-MakeMaker

下载源码包(下载的版本为 2.25.0,下载路径为:/opt/):

[root@centos] cd /opt/
[root@centos] wget https://www.kernel.org/pub/software/scm/git/git-2.25.0.tar.gz

解压:

[root@centos] tar -zxvf git-2.25.0.tar.gz

编译安装(安装在 /usr/local/git 目录下):

[root@centos] mkdir /usr/local/git
[root@centos] cd git-2.25.0
[root@centos] make prefix=/usr/local/git all
[root@centos] make prefix=/usr/local/git install

安装成功后配置 git 环境变量:

[root@centos] vim /etc/profile

在最后一行添加:

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

生效文件:

[root@centos] source /etc/profile

查看版本:

[root@centos] git --version
git version 2.25.0

生成 RSA 密钥:

[root@centos] ssh-keygen -t rsa

你可能感兴趣的:(Linux)