gpt4 book ai didi

django - 来自某个标签版本的 git fork - requirements.txt

转载 作者:行者123 更新时间:2023-12-04 16:09:50 26 4
gpt4 key购买 nike

我想 fork 一个 github 项目代码,但不是来自 master 分支,而是来自旧版本。

原因:我想在我的fork版本的代码中编辑一个地方,把这个标签版本的url放到我的requirements.txt中,这样

pip install -e git+https://git_url_to_my_form_in_this_tag_version

作品。

我在 github 中找到了标签版本,但是一旦我对它进行 fork ,它就会从 master fork ,而不是完全从那个标签 fork 。

我该怎么做?

最佳答案

fork 存储库会克隆 整个存储库,而不仅仅是主分支。然后,您可以 checkout 要处理的标签,进行所需的更改,并创建新标签。

# checkout the tag
git checkout tag_to_fork_from

# alternatively, create a new branch starting with the tag
git checkout -b mybranch tag_to_fork_on

关于django - 来自某个标签版本的 git fork - requirements.txt,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30892916/

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