是配置用户信息,包括用户名和邮箱地址。这可以通过以下命令完成:
git config --global user.name "Your Name" git config --global user.email "youremail@example.com"
这样做可以确保在提交更改时,Git能够识别你是谁,并将这些信息记录在提交历史中。