最近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
ここまでは順調ですね。名前とメールアドレスが正しく設定されているようです
[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
突然どこからともなく... Christian S.
私は何を見落としましたか?この名前とメールアドレスがどこから来たのかわかりません。これは、どこかでオーバーライドするのを忘れたデフォルト値ですか?
編集:個人情報を削除しました