Git安装配置(Linux)
Posted 一步棋
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git安装配置(Linux)相关的知识,希望对你有一定的参考价值。
- 使用yum安装Git
yum install git -y
- 编译安装
# 安装依赖关系 yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel # 编译安装 tar -zxf git-2.0.0.tar.gz cd git-2.0.0 make configure ./configure --prefix=/usr make make install
- 配置Git
git config --global user.name "clsn" #配置git使用用户 git config --global user.email "[email protected]" #配置git使用邮箱 git config --global color.ui true #语法高亮 git config --list # 查看全局配置
- 获取帮助
git help <verb>
- 使用yum安装Git
以上是关于Git安装配置(Linux)的主要内容,如果未能解决你的问题,请参考以下文章