Centos 6.8安装新版本git

使用yum 安装的git版本太低了。

git --version
git version 1.7.1

然后我安装oh my zsh报错如下:

% ./install.sh
Cloning Oh My Zsh...
error: unknown switch `c'
usage: git clone [options] [--] <repo> [<dir>]

    -v, --verbose         be more verbose
    -q, --quiet           be more quiet
    --progress            force progress reporting
    -n, --no-checkout     don't create a checkout
    --bare                create a bare repository
    --mirror              create a mirror repository (implies bare)
    -l, --local           to clone from a local repository
    --no-hardlinks        don't use local hardlinks, always copy
    -s, --shared          setup as shared repository
    --recursive           initialize submodules in the clone
    --template <path>     path the template repository
    --reference <repo>    reference repository
    -o, --origin <branch>
                          use <branch> instead of 'origin' to track upstream
    -b, --branch <branch>
                          checkout <branch> instead of the remote's HEAD
    -u, --upload-pack <path>
                          path to git-upload-pack on the remote
    --depth <depth>       create a shallow clone of that depth

Error: git clone of oh-my-zsh repo failed

上面报错我怀疑是git版本过低导致的。

下载安装git

官方下载页面如下:
https://git-scm.com/download/linux

我下载的版本是:
https://www.kernel.org/pub/software/scm/git/git-2.31.0.tar.gz

安装依赖make会用到

yum -y install autoconf
yum -y install gcc gcc-c++ libstdc++-devel 
yum install openssl-devel

安装

#解压
tar -zxvf git-2.31.0.tar.gz
cd git-2.31.0
make configure
./configure --prefix=/usr/local/git
make profix=/usr/local/git
make install

这样就安装完成了。

配置环境变量

以zsh为例

vim ~/.zshrc

增加下面一行

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

使环境变量立即生效

source ~/.zshrc

查询git版本

git --version
git version 2.31.0

说明新版本安装完成啦。

参考文档

https://qiankunpingtai.cn/article/1570870677248?p=1&m=0

猜你喜欢

转载自blog.csdn.net/lxyoucan/article/details/115055280