赞
踩
tar -zxvf git-2.9.5.tar.gz
./configure --prefix=/usr/local/git295
常用配置项
--prefix= :指定安装的路径
--sysconfdir= :指定配置文件目录
--enable-feature :启用某个特性
--disable-fecture :禁用特性
--with-function :启用某功能
--with-php-config=/usr/local/php/bin/php-config :例如安装php扩展时启用php配置文件
--without-function :禁用某功能
make
make install
ln -s /usr/local/git295/bin/git /usr/local/bin/git
git config user.email "user1@test1.com"
git config user.name "user1@test1"
操作完后,查看到.git/config配置文件中被自动添加了[user]值
[user]
email = user1@test1.com
name = user1@test1
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。