git修改用户名和邮箱以及密码

查看当前用户名和邮箱

git config user.name
git config user.email

修改

git config --global user.email "[email protected](新的邮箱)"
git config --global user.password "123456(新的密码)"
//这里的zhangsan和邮箱都是你修改之后的用户名和邮箱

修改完成之后再次查看确认下,是不是自己改后的用户名和邮箱以及密码

https://blog.csdn.net/CherryLee_1210/article/details/83377647?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-2.channel_param&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-2.channel_param

你可能感兴趣的:(git修改用户名和邮箱以及密码)