centos7 阿里云 安装 git 2.2.1 脚本

nhgxxyy0 2019-06-21

#!/bin/bash
wget https://github.com/git/git/archive/v2.2.1.tar.gz
tar zxvf v2.2.1.tar.gz
cd git-2.2.1
make configure
./configure --prefix=/usr/local/git --with-iconv=/usr/local/libiconv
make all
make install
echo "export PATH=$PATH:/usr/local/git/bin" >> /etc/bashrc
source /etc/bashrc
[root@iZbp12082f6cclytj56ggdZ ~]# vi install_git.sh 
[root@iZbp12082f6cclytj56ggdZ ~]# cat install_git.sh 
#!/bin/bash
yum remove git -y
wget https://github.com/git/git/archive/v2.2.1.tar.gz
tar zxvf v2.2.1.tar.gz
cd git-2.2.1
make configure
./configure --prefix=/usr/local/git --with-iconv=/usr/local/libiconv
make all
make install
echo "export PATH=$PATH:/usr/local/git/bin" >> /etc/bashrc
source /etc/bashrc

相关推荐