个人信息配置

个人信息配置

1. 配置邮箱

git config --global user.email "you@example.com"
git config --global user.name "Your Name"

2. 查看 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
posted @ 2024-01-18 17:37  爱新觉罗LQ  阅读(1)  评论(0编辑  收藏  举报