Skip to main content

Эта версия GitHub Enterprise Server была прекращена 2024-03-26. Исправления выпускаться не будут даже при критических проблемах безопасности. Для повышения производительности, повышения безопасности и новых функций выполните обновление до последней версии GitHub Enterprise Server. Чтобы получить справку по обновлению, обратитесь в службу поддержки GitHub Enterprise.

Просмотр имени пользователя или адреса электронной почты GitHub

Are you signing in to your GitHub Enterprise Server instance for the first time in a while? If so, welcome back! If you can't remember the username for your personal account on GitHub Enterprise Server, you can try these methods for remembering it.

Platform navigation

GitHub Desktop users

  1. In the GitHub Desktop menu, click Preferences.
  2. In the Preferences window, verify the following:
  1. In the File menu, click Options.
  2. In the Options window, verify the following:

Finding your username in your user.name configuration

During set up, you may have set your username in Git. If so, you can review the value of this configuration setting:

$ git config user.name
# View the setting
YOUR_USERNAME

Finding your username in the URL of remote repositories

If you have any local copies of personal repositories you have created or forked, you can check the URL of the remote repository.

Tip: This method only works if you have an original repository or your own fork of someone else's repository. If you clone someone else's repository, their username will show instead of yours. Similarly, organization repositories will show the name of the organization instead of a particular user in the remote URL.

$ cd YOUR_REPOSITORY
# Change directories to the initialized Git repository
$ git remote -v
origin	https://HOSTNAME/YOUR_USERNAME/YOUR_REPOSITORY.git (fetch)
origin	https://HOSTNAME/YOUR_USERNAME/YOUR_REPOSITORY.git (push)

Your user name is what immediately follows the https://[hostname]/.