Bootstrap

git 查看修改用户名,密码

查看用户名和邮箱地址:

//查看用户名
git config user.name
//查看用户邮箱地址
git config user.email

修改用户地址和邮箱:

//修改用户名称
git config --global user.name "username"
//修改邮箱地址
git config --global user.email "[email protected]"

 

;