首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >问答首页 >JIRA中的Git-Flow和每个问题分支的工作流可以协同工作吗?

JIRA中的Git-Flow和每个问题分支的工作流可以协同工作吗?
EN

Stack Overflow用户
提问于 2016-07-19 00:34:54
回答 1查看 444关注 0票数 5

Git-Flow假设开发人员在本地存储库中创建功能分支。JIRA中的每问题分支工作流程假设开发人员在远程存储库中创建了功能分支。这些工作流可以协同工作吗?另外,Eclipse Git-Flow插件是否可以与JIRA中的每问题分支工作流一起工作?

EN

回答 1

Stack Overflow用户

发布于 2019-03-06 01:42:17

是!

我只能自己想办法了。

通过的JIRA

  • 创建功能分支

代码语言:javascript
运行
复制
[sri@localhost scripts]$ git pull --all
Fetching origin
From ssh://pm.summationresearch.com:7999/l20/21-6016-xx-filesystem
 * [new branch]      feature/TX6K-188 -> origin/feature/TX6K-188
Already up to date.
[sri@localhost scripts]$ git feature list
git: 'feature' is not a git command. See 'git --help'.
[sri@localhost scripts]$ git flow feature list
No feature branches exist.

You can start a new feature branch:

    git flow feature start <name> [<base>]

[sri@localhost scripts]$

但是,我的功能没有显示出来!

代码语言:javascript
运行
复制
[sri@localhost scripts]$ git checkout -b feature/TX6K-188 remotes/origin/feature/TX6K-188
Branch 'feature/TX6K-188' set up to track remote branch 'feature/TX6K-188' from 'origin'.
Switched to a new branch 'feature/TX6K-188'
[sri@localhost scripts]$ git flow feature list
* TX6K-188
[sri@localhost scripts]$ 

啊!就是这样!

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/38441871

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档