配置git用户信息
配置git用户信息。
- 使用
git config user.email <email>
为当前仓库设置用户的电子邮件。 - 使用
git config user.name <name>
为当前仓库设置用户的名称。 - 您可以使用
--global
标志配置全局用户信息。
git config [--global] user.email <email>
git config [--global] user.name <name>
# 示例
git config user.email "cool.duck@qua.ck"
git config user.name "Duck Quackers"
# 为当前仓库配置用户信息
git config --global user.email "cool.duck@qua.ck"
git config --global user.name "Duck Quackers"
# 配置全局git用户