git 安装

1. Linux安装

使用软件包管理工具, 通过二进制安装程序安装, 如 Ubuntu 系统

$ sudo apt-get install git

2. Windows安装

通过官网下载对应系统安装程序https://git-scm.com/download/win

3. 源码安装

以 Ubuntu 系统为例

  1. 安装 git 依赖库
$ sudo apt-get install libcurl4-gnutls-dev libexpat1-dev gettext
    libz-dev libssl-dev
  1. 安装 git 依赖包
    $ sudo apt-get install asciidoc xmlto docbook2x
    
  2. 编译安装
    $ tar -zxf git-2.0.0.tar.gz
    $ cd git-2.0.0
    $ make configure
    $ ./configure --prefix=/usr
    $ make all doc info
    $ sudo make install install-doc install-html install-info
    

完成后,你可以使用 Git 来获取 Git 的升级

$ git clone git://git.kernel.org/pub/scm/git/git.git
Table of Contents