其他分享
首页 > 其他分享> > Git配置用户名和邮箱地址

Git配置用户名和邮箱地址

作者:互联网

配置用户名和邮箱地址:

git config --global user.name 'your_name'
git config --global user.email 'your_email@domain.com'

这个配置会存储在本地的C:\Users\用户名.gitconfig 文件。

参数:

查看config配置

git config --list --global
git config --list --local
git config --list --system

标签:git,邮箱地址,--,global,list,Git,config,用户名
来源: https://www.cnblogs.com/hllog/p/15857417.html