I'm trying to commit some changes as a different user, but i do not have a valid email address, following command is not working for me:
git commit --author="john doe" -m "some fix"
fatal: No existing author found with 'john doe'
I have the same problem when trying to commit with only an email address
git commit --author="john@doe.com" -m "some fix"
fatal: No existing author found with 'john@doe.com'
On the GIT man pages for the commit command it says i can use the
standard A U Thor <author@example.com> format
For the --author option.
Where is this format defined ? what does A and U stand for ? how do i commit for a different user with only a username or only an email?