I'm going mad for this issue, I've installed git 2.8.4 and ConEmu on a fresh windows 10 machine, i can run most git command without any issue form command prompt.
I've set my user info with
git config --global user.name "My name" git config --global user.mail mymail@mail.xx
but when i issue
git commit
all I can get is
*** 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.
fatal: unable to auto-detect email address (got 'xxxxx@xxxx.(none)')
I've checked the file in /Users/myaccount/.gitconfig and it's there with all required information, even worst if i issue
git config --global
it prints all the information from the file
The HOME variable is correctly set
I can't find where to knock my head...