Reputation: 163
We have a central GIT repository in our organization. I would like to know what is the best way to rename this central repository.
Thanks!
Upvotes: 3
Views: 249
Reputation: 1329542
Changing the name of a repo depends on how said repository is managed.
httpd.conf
in order to reference that new path.In any cases, as commented slashingweapon, you need each user to change their remote url (as described in "Changing a remote's URL")
git remote set-url origin new-url
Upvotes: 2