git配置用户名和邮箱

git配置用户名和邮箱-CSDN博客

示例(第一条有引号,第二条没有引号):

git config --global user.name "某某某"

git config --global user.email [email protected]

查看:

git config user.name

git config user.email

查看其它配置

git config --list

你可能感兴趣的:(git)