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权限并使用–system选项。
编译和执行上述代码时,会生成以下结果 –
设置用户名
Git在每次提交时使用此信息。
[jerry@CentOS project]$ git config --global user.name "Jerry Mouse"
设置电子邮件地址
这个信息用于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