CentOS 6.5下Git服务器搭建

时间:2023-12-11 23:57:08

1 . Git服务器搭建


1. 环境部署

系统环境:服务器端:CentOS 6.5 ,ip:192.168.56.1

客户端:CentOS 6.5 ,ip:192.168.56.101

软件版本:服务器端:源码编译安装,git-1.9.0.tar.gz

客户端:yum在线安装机制

2. 安装

2.1 服务器端:

#yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel perl-devel

#wget http://git-core.googlecode.com/files/git-1.9.0.tar.gz

#tar zxvf git-1.9..tar.gz

#cd git-1.9.

#make prefix=/usr/local/git all

#make prefix=/usr/local/git install  #root用户运行

———————————————————
如果编译时提示错误:

LINK git-credential-store
libgit.a(utf8.o): In function `reencode_string_iconv’:
/opt/git-master/utf8.c:: undefined reference to `libiconv’
libgit.a(utf8.o): In function `reencode_string_len’:
/opt/git-master/utf8.c:: undefined reference to `libiconv_open’
/opt/git-master/utf8.c:: undefined reference to `libiconv_close’
/opt/git-master/utf8.c:: undefined reference to `libiconv_open’
collect2: ld 返回
make: *** [git-credential-store] 错误

解决办法:

cd /usr/local/src/
wget http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.14.tar.gz
tar -zxvf libiconv-1.14.tar.gz
cd libiconv-1.14
./configure --prefix=/usr/local/libiconv && make && make install

然后回到git继续编译:

cd /usr/local/src/git-1.9.
make configure
./configure --prefix=/usr/local/git --with-iconv=/usr/local/libiconv
make
make install

查看版本号:git --version

git version 1.7.1

转自 : http://www.centoscn.com/CentosServer/ftp/2014/0414/2789.html