I have a repo with two branches: master
and fix-tests
. Remotely, I've already created a PR and did a Squash and Merge on fix-tests so that all of the changes from fix-tests are in master. That's all fine and good. But, when I have fix-tests checked out and do a git show
it says:
Author: jsmith <john.smith@email.com>
But, when I have master checked out and do a git-show
it says:
Author: John Smith <john.smith@email.com>
Why is the author name for the first one (on fix-tests) my username while on master it's the full name? This is causing problems while trying to send commit info to Slack.
Any and all help would be appreciated. Thanks!