要设置Git的用户名和邮箱,可以使用以下命令:
git config --global user.name "Your Name"
将 “Your Name” 替换为你想要设置的用户名。
git config --global user.email "youremail@example.com"
将 “youremail@example.com” 替换为你的邮箱地址。
通过这两个命令,你可以设置Git的用户名和邮箱,这样在提交代码时就能够正确地显示你的身份信息。