Git-Flow假设开发人员在本地存储库中创建功能分支。JIRA中的每问题分支工作流程假设开发人员在远程存储库中创建了功能分支。这些工作流可以协同工作吗?另外,Eclipse Git-Flow插件是否可以与JIRA中的每问题分支工作流一起工作?
发布于 2019-03-06 01:42:17
是!
我只能自己想办法了。
通过的JIRA
[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]$
但是,我的功能没有显示出来!
[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]$
啊!就是这样!
https://stackoverflow.com/questions/38441871
复制相似问题