centos 6.5 Git搭建

简介: <p style="margin:10px auto; padding-top:0px; padding-bottom:0px; font-size:14px; color:rgb(64,50,38); font-family:verdana,'ms song',宋体,Arial,微软雅黑,Helvetica,sans-serif; line-height:24px"> 1. 环境部署<

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.0.tar.gz

#cd git-1.9.0

#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:530: undefined reference to `libiconv’
libgit.a(utf8.o): In function `reencode_string_len’:
/opt/git-master/utf8.c:569: undefined reference to `libiconv_open’
/opt/git-master/utf8.c:588: undefined reference to `libiconv_close’
/opt/git-master/utf8.c:582: undefined reference to `libiconv_open’
collect2: ld 返回 1
make: *** [git-credential-store] 错误 1
复制代码

 

解决办法:

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.0
make configure
./configure --prefix=/usr/local/git --with-iconv=/usr/local/libiconv
make
make install

 

查看版本号:git --version

git version 1.7.1


参考:

http://www.cnblogs.com/mjorcen/p/4414163.html

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


目录
相关文章
|
Linux Shell 开发工具
centos7源码包安装git傻瓜式安装步骤
centos7源码包安装git傻瓜式安装步骤
281 0
|
3月前
|
Linux 开发工具 git
CentOS安装git客户端
【8月更文挑战第22天】在 CentOS 上安装 Git 可通过两种方式:一是利用 yum 包管理器,只需在终端依次执行 `sudo yum update` 和 `sudo yum install git` 命令,安装时按提示输入 y 即可;二是从源码安装,适用于有特殊需求的场景。首先安装必要的依赖库,然后下载并解压 Git 的源码包,最后通过一系列 make 命令完成配置与编译安装。无论哪种方式,安装完毕后均可通过 `git --version` 验证安装情况。
174 6
|
3月前
|
存储 Linux 编译器
在 CentOS 6.4 VPS 上安装 Git 的方法
在 CentOS 6.4 VPS 上安装 Git 的方法
37 0
|
3月前
|
存储 Linux 网络安全
在CentOS 7上安装Git的方法
在CentOS 7上安装Git的方法
274 0
|
5月前
|
Linux 测试技术 开发工具
CentOS Linux 8使用阿里源(安装jdk11、git测试)
CentOS Linux 8使用阿里源(安装jdk11、git测试)
521 1
|
11月前
|
存储 Linux 开发工具
如何在CentOS 8上安装Git
如何在CentOS 8上安装Git
371 0
|
Linux Shell 网络安全
CentOS7上使用GitLab搭建私有git代码仓库(超详细)(下)
CentOS7上使用GitLab搭建私有git代码仓库(超详细)(下)
215 1
|
Linux 网络安全 开发工具
CentOS7上使用GitLab搭建私有git代码仓库(超详细)(上)
CentOS7上使用GitLab搭建私有git代码仓库(超详细)(上)
438 0
|
缓存 网络协议 Linux
CentOS 服务器 git clone下载加速(下载过慢或超时)
CentOS 服务器 git clone下载加速(下载过慢或超时)
1523 0
|
缓存 Java 应用服务中间件
CentOS 基础环境搭建(Nginx、Git、Lrzsz)
CentOS 基础环境搭建(Nginx、Git、Lrzsz)
115 0
下一篇
无影云桌面