I recently started using git. I tried to follow the instructions for setting up my user info, but something seems to be terribly wrong:
[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
So far so good. My name and email address seem to be set correctly
[test@h] git add somefile
I added the file and now I want to fix it:
[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
Suddenly out of nowhere ... Christian S.
What did I forget? I have no idea where this name and email address comes from. Is this the default value that I forgot to override somewhere?
EDIT: Remote Personal Information
source
share