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

gir配置

时间:2014-07-01 21:18:41      阅读:287      评论:0      收藏:0      [点我收藏+]

标签:http   color   os   cti   line   io   

Git配置

1. 用户信息

你个人的用户名称和电子邮件地址,用户名可随意修改,git 用于记录是谁提交了更新,以及更新人的联系方式。

$ git config --global user.name "Donly Chan"
$ git config --global user.email donly@example.com
 
2.文本编辑
在需要输入必要的文本信息时调用,比如提交更新时忘了加注释。一般情况会用系统默认的编辑器,比如Vi、Vim。当然也可以自定:
$ git config --global core.editor emacs
 
3.差异分析工具

在解决冲突时经常用到,一般为vimdiff

$ git config --global merge.tool vimdiff

4.自动高亮

很有用的颜色提示,因有些人不喜欢,所以默认是不开启的

$ git config --global color.ui auto

5.查看配置

查看所有配置

$ git config --list

查看某个配置

$ git config user.name

6.帮助与参数资料

想全面了解更完整和详细的说明,方法有三:

$ git help
$ git --help
$ man git-
比如,要学习 config 命令可以怎么用,可执行:
$ git help config
 
原文网址:http://magicalboy.com/git-configuration/

gir配置,布布扣,bubuko.com

gir配置

标签:http   color   os   cti   line   io   

原文地址:http://www.cnblogs.com/yanglian/p/3816894.html

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