Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在不修改太多东西的情况下,我想知道如何重命名存储库名称?说,从foo到bar?
foo
bar
有什么命令可以实现这一点吗?
Settings
Rename
请记住,重命名不会保留任何链接或重定向;因此,访问您的旧存储库链接的人将获得著名的 github 404 页面。
此外,您仍然需要重命名存储库的本地副本。键入git remote -v以查看本地副本的所有遥控器,然后git remote set-url <name> <new-url>更新链接。
git remote -v
git remote set-url <name> <new-url>
如果您只想丢弃本地副本并重新开始,只需使用新 URL 从 github 重新克隆它。