如何在 GitHub 上分叉非 GitHub 存储库?

发布于 2025-01-05 08:29:01 字数 286 浏览 1 评论 0原文

这有最佳实践吗?我正在考虑

  • 创建一个存储库,添加原始存储库作为上游远程

  • 创建一个“镜像”存储库,然后分叉

  • 创建一个“镜像”存储库,然后创建一个“主题分支”

  • 一些东西其他

help.github.com/send-pull-requests

Is there a best practice for this? I was thinking either to

  • Create a repo, add original repo as upstream remote

  • Create a "mirror" repo, then fork that

  • Create a "mirror" repo, then create a "topic branch"

  • Something else

related:
help.github.com/send-pull-requests

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

仙女山的月亮 2025-01-12 08:29:01

这就是我最终所做的:

  1. 在 GitHub 上创建新的存储库

  2. 克隆新的存储库

    git clone [电子邮件受保护]:svnpenn/spoon -knife.git
    
  3. 从原始存储库添加源代码

    cd 勺刀
    git 远程添加上游 git://spoon.com/knife.git
    git 获取上游
    git 合并上游/master
    
  4. 将原始源代码推送到新存储库

    git push origin master
    
  5. 此时您可以开始提交您自己的源代码!

来源: help.github.com/fork-a-repo

This is what I ended up doing:

  1. Create new repo on GitHub

  2. Clone the new repo

    git clone [email protected]:svnpenn/spoon-knife.git
    
  3. Add source code from original repo

    cd Spoon-Knife
    git remote add upstream git://spoon.com/knife.git
    git fetch upstream
    git merge upstream/master
    
  4. Push original source code to new repo

    git push origin master
    
  5. At this point you can start committing your own source code!

source: help.github.com/fork-a-repo

去了角落 2025-01-12 08:29:01

GitHub 允许您导入 Git、Subversion、Mercurial 和 TFS 上的现有存储库。

请参阅 https://github.com/new/import

GitHub allows you to import an existing repository on Git, Subversion, Mercurial, and TFS.

See https://github.com/new/import

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文