Keep getting Invalid author specified. Example: A U Thor

前端 未结 7 787
梦谈多话
梦谈多话 2021-01-11 14:22

Using Eclipse Indigo and egit, everytime I commit a pop up appears and has my name and email in the author and committer boxes. They look fine. however, egit tells me:

7条回答
  •  生来不讨喜
    2021-01-11 14:33

    When looking at the org.eclipse.jgit.util.RawParseUtils_ParsePersonIdentTest and the org.eclipse.jgit.util.RawParseUtils#parsePersonIdent() function, I can only imagine some special character or some Git configuration (user.name, user.email) missing.

    Those settings should be enteredd in a configuration entry:

    new Entry

    The function which calls the parsing is org.eclipse.egit.ui.internal.dialogs.CommitMessageComponent#checkCommitInfo()

    If you user name and email are correctly set, then it can be an Egit or JGit bug.
    A bit like "bug 377969: EGit rebase does not valide user.name and user.email config properly" (on Linux).

提交回复
热议问题