Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are Git repository names case sensitive?

Tags:

git

github

I realize that changing the name of a Git repository is not a trivial task, and I read the answer to this question which describes how to change the repository name in the general case (I am also using GitHub).

However, I will only be changing the case of the repository name, e.g. Abc to abc. Therefore, can I simply change the name in the settings page of my repository on GitHub and be all set? Or do I still need to follow the steps outlined in the previous link?

like image 326
arshajii Avatar asked Jan 08 '13 23:01

arshajii


1 Answers

After experimenting a bit, I found that you cannot simply change the repository name in the settings page. The steps from the link in the body of the question must still be followed. Although in my case it was as simple as:

git remote set-url origin https://github.com/username/newreponame.git
like image 196
arshajii Avatar answered Nov 11 '22 09:11

arshajii