📅  最后修改于: 2023-12-03 15:09:57.285000             🧑  作者: Mango
当你在 Github 上 fork 一个项目时, 会自动在你的账户下创建一个新的 repo, 并将该项目所有的代码和历史记录一并复制到新的 repo 中.
如果你想更改该 repo 的名称, 可以通过 Git 命令来实现.
首先, 找到你 fork 的项目, 点击右上角的 "Forked from xxx" , 进入到原始项目的页面.
然后, 点击该项目的 "Code" 按钮, 将代码的 URL 复制到剪切板.
接着, 打开终端, 进入到你本地的代码目录, 执行以下命令:
git remote -v
它会显示你当前代码仓库的 remote 地址, 应该类似于这样:
origin https://github.com/your-username/repo-name.git (fetch)
origin https://github.com/your-username/repo-name.git (push)
其中, https://github.com/your-username/repo-name.git
就是你 fork 后的项目的 URL.
接着, 执行以下命令, 更改该 URL 中的 "repo-name" 部分为你想要的新名称:
git remote set-url origin https://github.com/your-username/new-repo-name.git
然后, 再次运行 git remote -v
命令, 确认地址已经更改.
最后, 执行以下命令, 将代码上传到新的 repo 中:
git push
执行完毕后, 你就成功更改了 fork 项目的名称.
总结
以上就是更改 fork 项目的名称的方法, 它只需要几个简单的 Git 命令, 让你轻松实现该操作.