Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Will changing my Github username to SnakeCase break anything?

So I read How to safely change github account name?

But if I just change my username from stevemoser to SteveMoser that shouldn't break any of my repos right? Or is Git case sensitive?

like image 387
Steve Moser Avatar asked Feb 05 '13 16:02

Steve Moser


People also ask

What happens if I change GitHub username?

After you change your username, GitHub will automatically redirect references to your repositories. Web links to your existing repositories will continue to work. This can take a few minutes to complete after you make the change.

Do GitHub usernames matter?

GitHub treats usernames in a case insensitive way, but using all lowercase is kinder to people doing downstream regular expression work with usernames, in various languages. A better strategy for word separation is to use a hyphen - or underscore _ .

How many times can you change your GitHub username?

You can change your Github account name at any time. Links to your repositories will redirect to the new URLs, but they should be updated on other sites because someone who chooses your abandoned username can override the links.

Should GitHub username be same as GitHub?

Git uses a username to associate commits with an identity. The Git username is not the same as your GitHub username.


1 Answers

Just tested it out, and it'll break cloning urls (git://, ssh) (at least on windows.

Although, web Urls will still work as they're case insensitive.

like image 194
Simon Boudrias Avatar answered Nov 15 '22 11:11

Simon Boudrias