git 查看/修改用户名,密码

查看用户名、邮箱

git config user.name
git config user.email

修改用户名、邮箱

git config --global user.name "新的名称"
git config --global user.email "新的邮箱"

关于vscode,git插件

在这里插入图片描述

发布了58 篇原创文章 · 获赞 0 · 访问量 6985

猜你喜欢

转载自blog.csdn.net/Mweb_demo/article/details/103726390