码迷,mamicode.com
首页 > 其他好文 > 详细

git基本配置

时间:2015-11-06 12:53:47      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:

1 git基本配置
$ git config --global user.name zhangan
$ git config --global user.email xxxx@126.com

应用配置级别
--local(本地仓库) > --global(当前用户) > --system(整个系统)

2 查看配置
$ git config --list --global

3 增加配置别名(但是查看的时候只显示最后添加别名)
$ git config --global --add user.name lisi

4 删除配置别名(如果只有一个user.name,可以不指定lisi)
$ git config --global --unset user.name lisi

5 修改配置别名(在只有一个user.name情况下)
$ git config --global user.name wangwu

如果有多个user.name别名时候会报错

$ git config --global user.name wangwu
warning: user.name 有多个取值
error: cannot overwrite multiple values with a single value
Use a regexp, --add or --replace-all to change user.name.

git基本配置

标签:

原文地址:http://www.cnblogs.com/or2-/p/4942087.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!