共计 413 个字符,预计需要花费 2 分钟才能阅读完成。
导读 | 可以使用 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" // 你的邮箱
正文完
星哥玩云-微信公众号