本篇文章重点为大家讲解一下通过git查看config配置信息具体方法,有需要的小伙伴可以参考一下。
查看配置
config 配置有system级别 global(用户级别)和local(当前仓库)三个设置先从system->global->local 底层配置会覆盖顶层配置 分别使用–system/global/local 可以定位到配置文件
查看系统config
git config --system --list
查看当前用户(global)配置
git config --global --list
查看当前仓库配置信息
git config --local --list
如下为查看系统config信息。
配置用户信息
git config --global user.name "your name" //你的名称
git config --global user.email "your email" //你的邮箱
以上就是良许教程网为各位朋友分享的Linu系统相关内容。想要了解更多Linux相关知识记得关注公众号“良许Linux”,或扫描下方二维码进行关注,更多干货等着你 !