vs code 提交代码弹框提示:请确保已在git中配置您的“user.name”和“user.email” ——解决方法

修改完项目代码,准备提交到git上,结果提交失败,弹框提示:请确保已在Git中配置您的“user.name”和“user.email”

打开终端,配置运行一下命令

$ git config --global user.name "your_username"  # 配置用户名
$ git config --global user.email "your_email"  # 配置邮箱

以上是全局配置“user.name”和“user.email”的命令,如果想要配置单个项目git的“user.name”和“user.email”,打开终端,进到该项目目录下,运行命令:  

1 $ git config user.name "your_username"
2 $ git config user.email "your_email"

 

配置完,查看git中配置的用户名和邮箱,看看是否配置成功

$ git config user.name
$ git config user.email

  

posted on 2023-02-27 09:27  奔驰的码儿  阅读(2941)  评论(0编辑  收藏  举报

导航