将 Bundler 的 rake 版本与 git-flow 结合使用

发布于 2024-12-01 14:19:12 字数 227 浏览 2 评论 0原文

我使用 git-flow 进行开发,并使用 Bundler 发布我的 gem。我的问题是如何同时使用 git-flow 版本和 rake 版本。两者都带有 git 标签,并且由于标签相同,因此存在冲突。

我应该如何处理这个问题而不必删除标签。现在我位于开发分支 (git-flow),要使用 git-flow 将其移动到主分支,您可以使用 git-flow 版本。

谢谢你的帮助,

-达米安

I'm using git-flow for the development, and Bundler to release my gem. My question is how to use both git-flow release and rake release together. Both tag git, and since the tag is the same there is a conflict.

How should I handle this without having to delete tags. Right now I'm on the develop branch (git-flow), and to move it to the master branch using git-flow, you use a git-flow release.

Thanks for your help,

-Damien

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

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

发布评论

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

评论(1

眼波传意 2024-12-08 14:19:12

看起来这个工作流程就是这样做的:

git flow release start v0.0.9
...
git flow release finish -n v0.0.9 
git checkout master
rake release

-n 命令行参数告诉 git-flow 不要标记分支,因此当您执行 rake 发布时,它将被正确标记。

Seems like this workflow does it:

git flow release start v0.0.9
...
git flow release finish -n v0.0.9 
git checkout master
rake release

The -n command-line argument tells git-flow not to tag the branch, so when you do a rake release, it will be tagged correctly.

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