查看系统config git config --system --list
查看当前用户(global)配置 git config --global --list
查看当前仓库配置信息 git config --local --list
举例设置 用户名, 邮箱
git config --global user.name "myname"
git config --global user.email "test@gmail.com"
删除配置git config --unset user.name
gitconfig 查看下载,改名为 .gitconfig
放入工程目录下
网友评论