添加、修改、删除以及查看本地git的用户名和邮箱

1.添加

$ git config --global user.name "yourName"
$ git config --global user.email "[email protected]"

2.修改

(1)覆盖的形式:

 

$ git config --global user.name "yourName"
$ git config --global user.email "[email protected]"

(2)替换的形式:

$  git config --global --replace-all user.name "yourName" 
$  git config --global --replace-all user.email "[email protected]"

3.删除

$ git config --global --unset user.name "yourName"
$ git config --global --unset user.email "[email protected]"

4.查看

(1)查看所有:

$ git config --list

(2)查看指定信息:

$ git config user.name
$ git config user.email

 

你可能感兴趣的:(添加、修改、删除以及查看本地git的用户名和邮箱)