我正在关注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选项,是否存在另一种方式?