git config 配置

2020-04-07  本文已影响0人  老猫_2017

查看系统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 放入工程目录下

上一篇 下一篇

猜你喜欢

热点阅读