when i did git log on my git repository it showing Author: = <=> as author details while in earlier commits it showing me the user name and email.
here is the screen shot of git log.
and in my earlier commits it is showing something like this
when i did git log on my git repository it showing Author: = <=> as author details while in earlier commits it showing me the user name and email.
here is the screen shot of git log.
and in my earlier commits it is showing something like this
Try running this if nothing else works when you commit:
git commit --author=<author> ...
Also, to set default configuration for a machine (recommended by myself), do the following:
git config --global "user.name" "Nick Bull"
git config --global "user.email" "nick.bull@email.co.uk"
or across the machine you're on (i.e., for all user
s) do git config --system "<setting>" "<value>"
.
Note you have duplicate entries in your configuration. Git will apply a "last one wins" approach to these.