git查看和修改用户名和邮箱地址

查看用户名和邮箱地址:

1、$ git config user.name

2、$ git config user.email

修改用户名和邮箱地址:

1、$ git config --global user.name "xzx"

2、$ git config --global user.email "[email protected]"

猜你喜欢

转载自blog.csdn.net/lihua5419/article/details/80414524