修改远程仓库及其本地仓库的名称涉及以下步骤:
远程仓库改名
- 在远程仓库管理平台(如 GitHub、GitLab 等)修改仓库名称:
- 登录远程仓库管理平台。
- 找到目标仓库。
- 进入仓库的 设置(Settings) 页面。
- 在仓库名称部分,将旧名称更改为新名称,然后保存。
本地仓库更新远程地址
远程仓库改名后,仓库的 URL 会发生变化。需要在本地仓库中更新对应的远程仓库 URL。
-
查看当前远程仓库地址:
git remote -v
输出可能类似:
origin https://github.com/yourusername/old-repo-name.git (fetch) origin https://github.com/yourusername/old-repo-name.git (push)
-
更新远程仓库地址:
git remote set-url origin https://github.com/yourusername/new-repo-name.git
-
验证远程仓库地址是否更新成功:
git remote -v
如果更新成功,输出应为:
origin https://github.com/yourusername/new-repo-name.git (fetch) origin https://github.com/yourusername/new-repo-name.git (push)
测试是否连接成功
执行以下命令测试是否连接到新的远程仓库:
git fetch
如果没有报错说明已成功连接到新的仓库名称。
(可选)本地文件夹改名
如果想让本地仓库的文件夹名称与远程仓库一致,可以直接在操作系统中重命名文件夹,不会影响仓库内容。
标签:origin,git,yourusername,仓库,https,远程 From: https://www.cnblogs.com/evergl0w/p/18589336