📅  最后修改于: 2023-12-03 15:00:57.947000             🧑  作者: Mango
在 Git 中,您可以设置一个全局的用户及其电子邮件地址,以便在提交代码时标识谁提交了代码。本文将为您介绍如何使用 Shell-Bash 命令行设置 Git 用户电子邮件。
git config --global user.name "your username"
请将
your username
替换为您的用户名。
git config --global user.email "your email address"
将
your email address
替换为您的电子邮件地址。
git config --global user.name "your username"
git config --global user.email "your email address"
通过以上步骤,您已经成功设置了 Git 用户及其电子邮件地址。在每次提交代码时,Git 将使用您的用户及其电子邮件地址标识您所做的更改。