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

git 常用配置

时间:2015-03-06 21:58:41      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:

配置文件位置:

  Linux:  ~//gitconfig

  Windows: <安装目录>/etc/gitconfig

 

1. git颜色配置

git config --global color.diff auto

git config --global color.status auto

git config --global color.branch auto

 

2. git默认编辑器设置

git config --global core.editor vim

 

3. git alias设置

git config --global alias.st status

git config --global alias.co checkout

git config --global alias.ct commit

git config --global alias.df diff

git config --global alias.br branch
 
自己的配置
[user]
    name = 
    email = 
[color]
    diff = auto
    status = auto
    branch = auto
    interactive = true
[alias]
    co = checkout
    ci = commit
    br = branch
    st = status
    lg = log --color --graph --pretty=format:‘%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset‘ --abbrev-commit
[core]
    editor = vim

 

参考: http://git-scm.com/book/zh/v1/%E8%87%AA%E5%AE%9A%E4%B9%89-Git-%E9%85%8D%E7%BD%AE-Git

git 常用配置

标签:

原文地址:http://www.cnblogs.com/iori-zy/p/4319177.html

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