git安装
先安装这些依赖工具
yum安装:如centos系统等
$ yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel
apt-get安装:debian系统
$ apt-get install libcurl4-gnutls-dev libexpat1-dev gettext libz-dev libssl-dev
从源代码安装
Git 官方站点下载最新版本源代码:
http://git-scm.com/download
然后编译并安装:
$ tar -zxf git-1.7.2.2.tar.gz
$ cd git-1.7.2.2
$ make prefix=/usr/local all
$ sudo make prefix=/usr/local install
ok, 安装完成, 用 git 把 Git 项目仓库克隆到本地
$ git clone git://git.kernel.org/pub/scm/git/git.git
在 Linux 上安装
如果要在 Linux 上安装预编译好的 Git 二进制安装包,可以直接用系统提供的包管理工具。在 Fedora 上用 yum 安装:
$ yum install git-core
在 Ubuntu 这类 Debian 体系的系统上,可以用 apt-get 安装
$ apt-get install git
在 Mac 上安装
使用图形化的 Git 安装工具(Git OS X 安装工具),载地址在:
http://sourceforge.net/projects/git-osx-installer/
通过 MacPorts (http://www.macports.org) 安装,已经装好了 MacPorts,用下面的命令安装 Git:
$ sudo port install git-core +svn +doc +bash_completion +gitweb
使用 homebrew(下载地址:https://github.com/mxcl/homebrew)执行命令:
$ brew install git
在 Windows 上安装
msysGit 下载 exe 安装文件并运行:http://msysgit.github.com/