[ubuntu ~]$ sudo apt-get install git-core [sudo] password for ubuntu:
[ubuntu ~]$ git --version git version 1.8.1.2
而且,如果使用的是基于RPM的GNU/ Linux发行版使用yum命令,如下:[CentOS ~]$ su - Password:
[CentOS ~]# yum -y install git-core
[CentOS ~]# git --version git version 1.7.1
[jerry@CentOS project]$ git config --global user.name "Jerry Mouse"
[jerry@CentOS project]$ git config --global user.email "jerry@yiibai.com"
jerry@CentOS project]$ git config --global branch.autosetuprebase always
[jerry@CentOS project]$ git config --global color.ui true
[jerry@CentOS project]$ git config --global color.status auto
[jerry@CentOS project]$ git config --global color.branch auto
[jerry@CentOS project]$ git config --global core.editor vim
[jerry@CentOS project]$ git config --global merge.tool vimdiff
[jerry@CentOS ~]$ git config --list
上面的命令会产生以下结果。user.name=Jerry Mouse user.email=jerry@yiibai.com push.default=nothing branch.autosetuprebase=always color.ui=true color.status=auto color.branch=auto core.editor=vim merge.tool=vimdiff