我最近开始使用 Git 。 我试图按照指示设置我的用户信息, 但似乎有可怕的错误:
[test@h] git config --list
user.name=**MY NAME**
user.email=**MY EMAIL**
core.repositoryformatversion=0
core.filemode=true
core.bare=false
core.logallrefupdates=true
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
remote.origin.url=** URL **
branch.master.remote=origin
ranch.master.merge=refs/heads/master
到目前为止, 都很好。 我的名字 & amp; 电子邮件地址似乎设置正确 。
[test@h] git add somefile
我添加了一个文件, 现在想要承诺:
[test@h] git commit -m "test commit"
[master 280efe4] test commit
Author: Christian S. <strcat@****.com>
1 file changed, 0 insertions(+), 0 deletions(-)
create mode 100644 somefile
突然不知从哪冒出来...
我忽略了什么? 我没有这个名字和电子邮件地址的来源。 我忘了在某个地方重置这个默认值吗?
EDIT: 被删除的个人信息