Git查看或修改用户名和邮箱

查看用户名

git config user.name

查看邮箱

git config user.email

修改用户名

git config --global user.name 'Jack'

修改邮箱

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

猜你喜欢

转载自www.cnblogs.com/ykCoder/p/12106312.html