g配置信息git查看

可以使用git config查看具体配置帮助信息

一、查看配置

config 配置有system级别 global(用户级别)和local(当前仓库)三个设置先从system->global->local  底层配置会覆盖顶层配置 分别使用--system/global/local 可以定位到配置文件

  • 查看系统config

 

Shell

1git config --system --list

 

  • 查看当前用户(global)配置

 

Shell

1git config --global  --list

 

  • 查看当前仓库配置信息

 

Shell

1git config --local  --list

如下为查看系统config信息

自动草稿

二、配置用户信息

 

Shell

12git config --global user.name "your name" //你的名称git config --global user.email "your email"     //你的邮箱
上一篇:为啥鹅蛋很少人吃 卖鹅蛋的也很少 我也是刚知道 真的涨知识了
下一篇:通过查看源代码一键复制粘贴网页上禁止复制的内容