Skip to main content

Diese Version von GitHub Enterprise Server wird eingestellt am 2026-03-17. Es wird keine Patch-Freigabe vorgenommen, auch nicht für kritische Sicherheitsprobleme. Für bessere Leistung, verbesserte Sicherheit und neue Features aktualisiere auf die neueste Version von GitHub Enterprise Server. Wende dich an den GitHub Enterprise-Support, um Hilfe zum Upgrade zu erhalten.

Erinnerung für deinen GitHub-Benutzernamen oder deine GitHub-E-Mail-Adresse

Meldest du dich nach einiger Zeit zum ersten Mal wieder an? Wenn ja, willkommen zurück! Wenn du dich nicht mehr an den Benutzernamen für dein persönliches Konto erinnern kannst, kannst du folgende Methoden zum Merken testen.

Platform navigation

GitHub Desktop users

  1. In the GitHub Desktop menu, click Preferences.
  2. In the Preferences window, verify the following:
    • To view your GitHub username, click Accounts.
    • To view your Git email, click Git. Note that this email is not guaranteed to be your primary email.
  1. In the File menu, click Options.
  2. In the Options window, verify the following:
    • To view your GitHub username, click Accounts.
    • To view your Git email, click Git. Note that this email is not guaranteed to be your primary email.

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.

Tipp

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	http://HOSTNAME/YOUR-USERNAME/YOUR-REPOSITORY.git (fetch)
origin	http://HOSTNAME/YOUR-USERNAME/YOUR-REPOSITORY.git (push)

Your username is what immediately follows the http://HOSTNAME/.