gpt4 book ai didi

Git 流 : Can I publish a feature more than once before I finish the feature?

转载 作者:太空狗 更新时间:2023-10-29 13:32:18 29 4
gpt4 key购买 nike

我开始使用 git flow。我创建了一个功能:

git flow feature start eval

然后我做了一些工作并添加并提交了更改:

git add (files)
git commit -m "(description of commit)"

我还没有完成该功能,但想将其推送到外部存储库以备过夜:

git flow feature publish eval

好的,目前没问题。现在我又开始工作了,我想将一些新的更改推送到外部存储库,但我仍在研究该功能。但是当我跑的时候

git add (new files)
git commit -m "(description 2)"
git flow feature publish eval

返回

Branch 'origin/feature/eval' already exists. Pick another name.

但我的分支是feature/eval ,所以如果我将另一个分支名称传递给 git flow feature publish <name> ,它会抛出一个错误。

总而言之,我的问题是——当我正在(尚未准备好完成)一项功能时,如何推送多个提交?我可以运行类似 git push origin feature/eval 的东西吗? ?

最佳答案

git-flow 扩展检查分支名称 doesn't already exist以防止您或其他人不小心覆盖它。它还configures your branch跟踪您刚刚 publish 的远程分支,因此您现在只要有更多更改就可以 git push

关于Git 流 : Can I publish a feature more than once before I finish the feature?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33654889/

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