将 Bundler 的 rake 版本与 git-flow 结合使用
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来这个工作流程就是这样做的:
-n 命令行参数告诉 git-flow 不要标记分支,因此当您执行 rake 发布时,它将被正确标记。
Seems like this workflow does it:
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.