Git – 环境搭建
在使用 Git 之前,你必须先安装并做一些基本的配置修改。以下是在 Ubuntu 和 Centos Linux 上安装 Git 客户端的步骤。
安装 Git 客户端
如果你使用的是基于 Debian 的 GNU/Linux 发行版,那么 apt-get 命令就能满足需要。
[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
自定义 Git 环境
Git 提供了 git config 工具,允许你设置配置变量。Git 将所有全局配置保存在 .gitconfig 文件中,该文件位于你的主目录中。要将这些配置值设置为全局的,请添加 --global 选项,如果你省略 --global 选项,那么你的配置就是针对当前 Git 仓库的。
你也可以设置系统范围的配置。Git 将这些值保存在 /etc/gitconfig 文件中,该文件包含了系统中每个用户和仓库的配置。要设置这些值,你必须有root权限并使用 -系统 选项。
当上述代码被编译和执行时,会产生以下结果 —
设置用户名
这些信息会被 Git 用于每次提交。
[jerry@CentOS project]$ git config --global user.name "Jerry Mouse"
设置电子邮件ID
这个信息被Git用于每次提交。
[jerry@CentOS project]$ git config --global user.email "jerry@tutorialspoint.com"
避免拉取时的合并提交
你从远程仓库拉取最新的修改,如果这些修改是不同的,那么默认情况下,Git 会创建合并提交。我们可以通过以下设置来避免这种情况。
jerry@CentOS project]$ git config --global branch.autosetuprebase always
颜色突出显示
以下命令可以在控制台中为Git启用颜色高亮。
[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
设置默认编辑器
默认情况下,Git 使用系统默认的编辑器,它来自 VISUAL 或 EDITOR 环境变量。我们可以用 git config 来配置一个不同的编辑器。
[jerry@CentOS project]$ git config --global core.editor vim
设置默认的合并工具
Git没有提供一个默认的合并工具来将冲突的修改整合到你的工作树中。我们可以通过启用以下设置来设置默认的合并工具。
[jerry@CentOS project]$ git config --global merge.tool vimdiff
列出 Git 的设置
要验证本地仓库的 Git 设置,请使用 git config -list 命令,如下所示。
[jerry@CentOS ~]$ git config --list
上述命令将产生以下结果。
user.name=Jerry Mouse
user.email=jerry@tutorialspoint.com
push.default=nothing
branch.autosetuprebase=always
color.ui=true
color.status=auto
color.branch=auto
core.editor=vim
merge.tool=vimdiff