I use Git on Windows and set the username and email with:
git config --global user.name "hydRAnger"
git config --global user.email "[email protected]"
When I use:
git config --global --list
I get the output:
user.name=hydRAnger
[email protected]
However, when I use git log
the author info should be:
Author: hydRAnger
<[email protected]>
But in fact I get the output:
Author: unknown
<hydRAnger@hydRAnger-PC.(none)>
I don't know why the author information incorect.