git config 查看配置信息

  • Post author:
  • Post category:其他


config 配置指令

1
git config

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

     查看系统config

1
git config --system --list

  查看当前用户(global)配置

1
git config --global  --list

      查看当前仓库配置信息

1
git config --
local 
 
--list

版权声明:本文为qwaszx523原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。