安装 Git 版本控制工具

从源代码进行编译安装

1. 先下载最新的 git 稳定版源码

wget https://git-core.googlecode.com/files/git-1.7.10.tar.gz

2. 解压源码,并进入源码目录

a. msgfmt: command not found

解决方法:yum install gettext

b. 安装完毕执行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

c.: undefined reference to `dlopen' etc Makefile链接选项中增加 -ldl即可


附:Windows 环境使用 Git 的相关工具

1. Cygwin http://www.cygwin.com/附:Windows 环境使用 Git 的相关工具

2. msysGit http://msysgit.github.com/

3. TortoiseGit http://code.google.com/p/tortoisegit/


转改自:http://www.fising.cn/2012/04/%E5%AE%89%E8%A3%85-git-%E7%89%88%E6%9C%AC%E6%8E%A7%E5%88%B6%E5%B7%A5%E5%85%B7.shtml

你可能感兴趣的:(安装 Git 版本控制工具)