明道学苑

学而不思则罔,思而不学则殆

0%

使用Git时配置用户名和邮箱

本文说明如何使用Git时如何配置用户名和邮箱

首次运行Git时应该配置用户名和邮箱,否则会一直提示你配置用户明和邮箱。可以选择全局方式配置,对所有的项目有效。也可以选择针对当一项目有效。

全局配置

使用下面的指令全局化配置用户名和邮箱。

git config --global user.name "John Doe"
git config --global user.email johndoe@example.com

单一仓库配置

进入git仓库目录后,使用下面的命令为当前代码仓库配置用户名和邮箱

git config user.name "John Doe"
git config user.email johndoe@example.com