git commit和user identity

jgovgodb  于 2023-08-01  发布在  Git
关注(0)|答案(3)|浏览(81)

我遵循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.


但我不想输入--全局选项,是否存在其他方式?

bvk5enib

bvk5enib1#

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

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

字符串

jw5wzhpr

jw5wzhpr2#

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


的数据


ldfqzlk8

ldfqzlk83#

这是解决

1- git init
2- git config user.name "AccountName"
3- git config user.email "yourGamil"
4- git add *
5- git commit -m "WriteCommit"
6- git push origin master

字符串

相关问题