Jira and git: How to flip all branches?

Using the development infrastructure git, Fisheye + Crucible and Jira 4.2.

It is recorded in Fisheye-registered repositories, reflected in Jira projects and tickets, as we have configured mappings in Jira; however, only the fixations on the main branch seem to be reflected. Other branches can be selected in Crucible to search for commits for reviews.

How can I make all of these branches visible in Jira?

+6
source share
2 answers

This seems to be a limitation of Git -Fisheye ( https://confluence.atlassian.com/display/FISHEYE/Git ):

When FishEye indexes the Git repository, it indexes the available branches. When it processes commits on a branch, FishEye assigns a commit to the branch, in which it first sees the commit. The end is indexed only once, therefore, if the commit belongs to several branches, the commit will not be indexed for subsequent branches.

You can use the Jira Git plugin https://marketplace.atlassian.com/plugins/com.xiplink.jira.git.jira_git_plugin

+2
source

Displaying the same commit for each branch that appears makes the list of commits unreadable. Klonfisch , the Jira-Gitorious-connector, does just that.

This is unreadable, and I will probably change it. Here is an example with 5 branches:

enter image description here

0
source

Source: https://habr.com/ru/post/909745/


All Articles