Centos6.X 安装最新版的git

CentOS6.X自带的git版本是1.7.1

卸载自带的git

1、# yum remove git

2、下载最新版git

  #wget https://github.com/git/git/archive/v2.9.2.tar.gz

3、解压

  tar xf v2.9.2.tar.gz 

  cd git-2.9.2

4、编译安装

# make configure

# ./configure --prefix=/usr/local/git --with-iconv=/usr/local/libiconv

该命令容易出错

# make all doc

问题1:

GITGUI_VERSION = 0.20.GITGUI

    * new locations or Tcl/Tk interpreter

    GEN git-gui

    INDEX lib/

    * tclsh failed; using unoptimized loading

    MSGFMT    po/bg.msg make[1]: *** [po/bg.msg] Error 127

make: *** [all] Error 2

解决:yum install tcl  build-essential tk gettext

问题2:

make[2]: Leaving directory `/usr/local/src/git-2.9.2'

    ASCIIDOC git-add.html

/bin/sh: line 1: asciidoc: command not found

make[1]: *** [git-add.html] Error 127

make[1]: Leaving directory `/usr/local/src/git-2.9.2/Documentation'

make: *** [doc] Error 2

解决: 安装包位置:http://sourceforge.net/projects/asciidoc 下载后进行安装

问题3:

error : Operation in progress

warning: failed to load external entity "http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl"

compilation error: file docbook.xsl line 3 element import

xsl:import : unable to load http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl

make[1]: *** [user-manual.html] Error 5

make[1]: Leaving directory `/usr/local/src/git-2.9.2/Documentation'

make: *** [doc] Error 2

解决:

1、yum search XSLTPROC

2、找了好多 都不好使 最后 yum -y install docbook-style-xsl不报错了

问题4:

    ASCIIDOC technical/api-index.html

sed "s|@@MAN_BASE_URL@@|file:///usr/local/git/share/doc/git/|" manpage-base-url.xsl.in > manpage-base-url.xsl

    ASCIIDOC git-add.xml

    XMLTO git-add.1

/bin/sh: line 1: xmlto: command not found

make[1]: *** [git-add.1] Error 127

make[1]: Leaving directory `/usr/local/src/git-2.9.2/Documentation'

make: *** [doc] Error 2

解决:

  xmlto这个包不太好找,不过有adam在,这些都是浮云(呵呵)。下载地址:https://fedorahosted.org/releases/x/m/xmlto/,安装方法同asciidoc。

  上面没找到 还是原始办法吧

  yum install xmlto

然后就没有问题了

make[1]: Leaving directory `/usr/local/src/git-2.9.2/Documentation'

看到这里本命令就完成了 下面开始安装

#sudo make install install-doc install-html

        make[1]: Leaving directory `/usr/local/src/git-2.9.2/Documentation'

看到这里git就安装完成了

5、修改环境变量

  # sudo vim /etc/profile

6、在最后一行添加

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

7、保存后使其立即生效

  # source /etc/profile

8、查看是否安装成功

  #git --version

  报错:安装完毕执行git,提示"git: error while loading shared libraries: libcharset.so.1: cannot open shared object file: No such file or directory"

  解决方法:ln -s /usr/local/lib/libcharset.so.1 /lib/libcharset.so.1 

                   然后:ldconfig 就可以了

 显示:git version 2.9.2


问题:

1、[root@localhost www]# git clone https://github.com/unixhot/waf.git

Cloning into 'waf'...

fatal: unable to access 'https://github.com/unixhot/waf.git/': SSL connect error

解决:

过完年回来, github不安分了, 发了博文说不支持TLSv1/TLSv1.1:Weak cryptographic standards removed, 没看到这篇博文之前, 还以为是代理问题, 设置过, 还是不行, 还更新到最新的git, 还是不行, 就查了一下TLS协议, 终于通过git的文档中获得提示:git配置文档.

    首先, 更新git, 我也没查过要更新到什么版本, 反正之前用1.8有问题,

接下来的操作都不起效, 换了2.16以后才可以, 有条件就更到最新呗. 至于怎么更新, 自己查资料, 我就不喜欢惯着你们.

PS:OpenSSL和libcurl可能也要升级

然后就开始设置了, 就一行命令

设置 git config --global http.sslversion tlsv1

    理论上来说, 应该是不支持TLSv1的, 但设置成tlsv1才行, 其他的tlsv1.2什么的都不行, 我也不知道啊, 求指教, 求科普

你可能感兴趣的:(Centos6.X 安装最新版的git)