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

git 常用配置

时间:2019-01-01 14:58:09      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:email   空格   .com   com   系统   用户名   conf   命令   name   

基本配置

  对git进行配置时使用 git config 命令进行操作

1. git config 的作用域,缺省等于 local

  git config --local      #只针对某个仓库有效

  git config --global    #针对当前用户的所有仓库有效

  git config --system       #针对系统所有登录用户的所有仓库有效

2. 查看 config 的配置,加 --list

  git  config  --list    显示所有作用域的配置

  git  config  --list  --local      

  git  config  --list  --global    

  git  config  --list  --system       

3. config配置,作用域越小,优先级越高

  设置用户名和邮箱,注意是中间有空格,信息用单引号括起来

  git  config  --global  user.name  ‘username‘

  git  config  --global  user.email  ‘email@.com‘

git 常用配置

标签:email   空格   .com   com   系统   用户名   conf   命令   name   

原文地址:https://www.cnblogs.com/virgosnail/p/10204680.html

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