gpt4 book ai didi

git - Bitbucket: fork 到现有存储库

转载 作者:行者123 更新时间:2023-12-02 19:47:51 32 4
gpt4 key购买 nike

我在 bitbucket 上有空的存储库 B,我想将另一个 A fork 到我现有的存储库 B 中。我该如何执行此操作?在网站上,bitbucket 只允许在新存储库中 fork 。

最佳答案

我看到两个选项:

  1. 如果您不需要 Bitbucket 将其称为 fork ,您可以简单地克隆存储库 A 并将其推送到存储库 B。这就是“ fork ”的大部分含义。

    git clone git@bitbucket.com:user/repo
    cd repo
    git remote add my-clone git@bitbucket.com:you/repo-b
    git push --mirror my-clone
  2. 如果您需要 Bitbucket 将您的 fork 称为 fork ,您可以利用 Bitbucket wikis are repositories 的优势。制作 wiki 的本地副本,然后删除存储库 B,然后将存储库 A fork 到存储库 B,然后将 wiki 推送回存储库 B。

    git clone http://bitbucket.org/you/repo-b/wiki repo-b.wiki
    cd repo-b.wiki
    # Have a look at the files in repo-b.wiki and make sure they look complete
    # Then delete repository B from Bitbucket
    # Then fork repository A to repsitory B using the Bitbucket web UI
    # Then push the wiki back:
    git push origin master

关于git - Bitbucket: fork 到现有存储库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36059272/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com