Skip to main content

Выпуск GitHub AE сейчас ограничен.

Почему мои фиксации связаны с неправильным пользователем?

GitHub AE использует адрес электронной почты в заголовке фиксации, чтобы связать фиксацию с пользователем GitHub. Если фиксации связаны с другим пользователем или вообще не связаны с пользователем, может потребоваться изменить параметры локальной конфигурации Git.

Note: If your commits are linked to another user, that does not mean the user can access your repository. A user can only access a repository you own if you add them as a collaborator or add them to a team that has access to the repository.

Commits are linked to another user

If your commits are linked to another user, that means the email address in your local Git configuration settings is connected to that user's account on GitHub AE. In this case, you can change the email in your local Git configuration settings to the address associated with your account on GitHub AE to link your future commits. Old commits will not be linked. For more information, see "Setting your commit email address."

Commits you make from this point forward will be linked to your account.

Commits are not linked to any user

If your commits are not linked to any user, the commit author's name will not be rendered as a link to a user profile. To check the email address used for those commits and connect commits to your account, take the following steps.

  1. On your enterprise, navigate to the main page of the repository.

  2. On the main page of the repository, above the file list, click commits.

    Screenshot of the main page for a repository. A clock icon and "178 commits" is highlighted with an orange outline.

  3. To navigate to a specific commit, click the commit message for that commit.

    Screenshot of a commit in the commit list for a repository. "Update README.md" is highlighted with an orange outline.

  4. To read a message about why the commit is not linked, hover over the blue to the right of the username.

    • Unrecognized author (with email address) If you see this message with an email address, the address you used to author the commit is not connected to your account on GitHub AE.
    • Unrecognized author (no email address) If you see this message without an email address, you used a generic email address that can't be connected to your account on GitHub AE.
    • Invalid email The email address in your local Git configuration settings is either blank or not formatted as an email address.

You can change the email in your local Git configuration settings to the address associated with your account to link your future commits. Old commits will not be linked. For more information, see "Setting your commit email address."

If your local Git configuration contained a generic email address, or an email address that was already attached to another user's account, then your previous commits will not be linked to your account. While Git does allow you to change the email address used for previous commits, we strongly discourage this, especially in a shared repository.

Further reading