git命令
查看配置文件:
git config --system --list(查看系统配置文件目录)
git config --global --list(查看全局配置文件目录)
设置用户信息配置
git config --global user.name "用户名"
git config --global user.email "邮箱"
查看配置文件:
git config --system --list(查看系统配置文件目录)
git config --global --list(查看全局配置文件目录)
设置用户信息配置
git config --global user.name "用户名"
git config --global user.email "邮箱"