Centos 6.8 install new version of git

The version of git installed with yum is too low.

git --version
git version 1.7.1

Then I installed oh my zsh and reported the following error:

% ./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

I suspect that the above error is caused by the low git version.

Download and install git

The official download page is as follows:
https://git-scm.com/download/linux

The version I downloaded is:
https://www.kernel.org/pub/software/scm/git/git-2.31.0.tar.gz

Installation dependent make will be used

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

installation

#解压
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

This completes the installation.

Configure environment variables

Take zsh as an example

vim ~/.zshrc

Add the following line

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

Make environment variables take effect immediately

source ~/.zshrc

Query git version

git --version
git version 2.31.0

The installation of the new version is complete.

Reference documents

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

Guess you like

Origin blog.csdn.net/lxyoucan/article/details/115055280