git提交和用户身份

时间:2013-03-13 17:41:52

标签: git

我正在关注GIT的官方指南,实际上我在2.2.6段“承诺你的改变” 以前,当要求输入像

这样的命令时,在第1.5.1节“身份”中
git config --global user.name "John Doe"

我错过了--global选项,因为我不需要它。 现在每次我做git提交,我都会获得

$git commit

*** Please tell me who you are.

Run

  git config --global user.email "you@example.com"
  git config --global user.name "Your Name"

to set your account's default identity.
Omit --global to set the identity only in this repository.

但我不想输入--global选项,是否存在另一种方式?

2 个答案:

答案 0 :(得分:11)

如果您只想为该存储库设置它,请运行:

git config user.email "you@example.com"
git config user.name "Your Name"

答案 1 :(得分:1)

只需输入您在GitHub帐户中使用的相同名称,即相同的字母和字符。

GitHub account name

git user.name