sh 在CentOS 6.7上安装Git
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 在CentOS 6.7上安装Git相关的知识,希望对你有一定的参考价值。
yum groupinstall "Development Tools"
yum install gettext-devel openssl-devel perl-CPAN perl-devel zlib-devel expat-devel curl-devel
yum install gcc perl-ExtUtils-MakeMaker
yum remove git
wget https://github.com/git/git/archive/v2.5.3.tar.gz -O git.tar.gz
tar -zxf git.tar.gz
cd git-2.5.3
make configure
./configure --prefix=/usr/local
make install
git config --global user.name "Your Name"
git config --global user.email "you@example.com"
git config --global color.status "auto"
git config --global color.branch "auto"
git config --global color.interactive "auto"
git config --global color.diff "auto"
git config --list
以上是关于sh 在CentOS 6.7上安装Git的主要内容,如果未能解决你的问题,请参考以下文章
CentOS 6.7 x64 Apache/PHP/Mariadb环境搭建
如何在centos 6.7 上安装oracle 11gR2
在linux(CentOS-6.7_x86_64)上安装mysql成功记录
CentOS 6.7安装Hadoop 2.6.3集群环境
Centos 6.7 安装 mysql 5.7.12
老王学linux-centos6.7RHCS