Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find my GitHub username so that I can be found via the URL? [closed]

Tags:

git

github

I'm confused about my GitHub username

  1. Is it the one that is being displayed on the top right corner of the window?
  2. Or is it the one I created using "git config --global user.name" from my shell?

I need to give it in a job application form.

like image 370
user2539745 Avatar asked Sep 29 '13 10:09

user2539745


People also ask

How do I find an inactive GitHub username?

TL;DR: If the user with the username you want is inactive, report it to Github on his profile. It's part of their name squatting policy, and you'll probably receive feedback.

What is your GitHub URL?

The GitHub Pages repository URL is always https://{userid}.github.io/{reponame} The GitHub Pages URL is based on the GitHub repo URL, and takes the format https://{userid}.github.io/{reponame} . The moment you use it, GitHub Pages will generate a website based on the contents of your repo.


1 Answers

The one displayed in the top right corner in GitHub is your GitHub username - this is the one you use to login to GitHub when you enter the site and when you commit over HTTPS, and the one that appears in the URLs of your GitHub repositories.

The one you create using git config is your Git username - this is the one that appears as the author of your commits when you do git log or git blame.

Since you can use Git outside of GitHub, those two usernames do not have to be the same.

Also, the GitHub username must be unique, but nothing forces uniqueness of Git usernames.

like image 170
Idan Arye Avatar answered Sep 27 '22 22:09

Idan Arye