Continue to receive an invalid author. Example: A Thor < author@example.com >
Using Eclipse Indigo and egit, every time I make a popup and has my name and email address in the author and committer blocks. They look great. however, egit tells me:
Invalid author specified. Example: AU Thor < author@example.com > when I copy and paste AU Thor < author@example.com > into the author field, the message disappears. I can even edit it to my name and email, and that's all right. what does not make sense - what is wrong with him in the first place?
A similar problem occurs with the committer field. I get:
Invalid committer specified. Example: CO Mitter < committer@example.com > Commit from the command line: git commit -m "message"
The next commit from eGit will work.
Looking at org.eclipse.jgit.util.RawParseUtils_ParsePersonIdentTest and the org.eclipse.jgit.util.RawParseUtils # parsePersonIdent () function, I can only imagine some special characters or some Git settings (user.name, user.email) missing.
These settings must be entered in the configuration entries:

Function that parses: org.eclipse.egit.ui.internal.dialogs.CommitMessageComponent#checkCommitInfo()
If you entered your username and email address correctly, it could be an Egit or JGit error .
A bit like " error 377969: rebasing EGit does not verify the configuration of user.name and user.email " (on Linux).
Do you run git directly or into the gerrit verification system? At least gerrit has case-sensitive mail addresses, so you need to enter them exactly as you know on the server.
In our company environment, which led to some confusion because they are stored as Jon.Doe@example.com on the LDAP server, but most people tried jon.doe@example.com using egit and received exactly your error messages.
Another alternative could be some kind of dummy space at the beginning or end of your author name in the configuration. You may not see it in error messages. I saw such an error when people copied content from a web page into a text editor that was stored more than "clean" text.
See the message you get:
Invalid author specified. Example: AU Thor < author@example.com >
It just means that he wants information in the specified format.
For example, if your name is James Bond, you need to enter
James Bond < bond@unknown.com >
You can do the same on both lines.
You must fill out the form below.
Name and email address is your account name and email address.
Posted by: Davidle
Committer: davidLEE