Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 git-flow 进行开发,并使用 Bundler 来发布我的 gem。我的问题是如何同时使用 git-flow release 和 rake release。两者都标记 git,并且由于标记相同,因此存在冲突。
我应该如何处理这个而不必删除标签。现在我在开发分支(git-flow)上,要使用 git-flow 将其移动到主分支,您使用 git-flow 版本。
谢谢你的帮助,
-达米安
似乎这个工作流程可以做到:
git flow release start v0.0.9 ... git flow release finish -n v0.0.9 git checkout master rake release
-n 命令行参数告诉 git-flow 不要标记分支,因此当您执行 rake 发布时,它将被正确标记。