2018-03-17 18:26:18 +05:30
|
|
|
|
- merged = local_assigns.fetch(:merged, false)
|
2016-11-24 13:41:30 +05:30
|
|
|
|
- commit = @repository.commit(branch.dereferenced_target)
|
2018-05-09 12:01:36 +05:30
|
|
|
|
- merge_project = merge_request_source_project_for_project(@project)
|
2019-09-30 21:07:59 +05:30
|
|
|
|
%li{ class: "branch-item js-branch-item js-branch-#{branch.name}", data: { name: branch.name } }
|
2018-05-09 12:01:36 +05:30
|
|
|
|
.branch-info
|
|
|
|
|
.branch-title
|
2021-10-27 15:23:28 +05:30
|
|
|
|
= sprite_icon('branch', size: 12, css_class: 'gl-flex-shrink-0')
|
2020-06-23 00:09:42 +05:30
|
|
|
|
= link_to project_tree_path(@project, branch.name), class: 'item-title str-truncated-100 ref-name gl-ml-3 qa-branch-name' do
|
2018-05-09 12:01:36 +05:30
|
|
|
|
= branch.name
|
|
|
|
|
- if branch.name == @repository.root_ref
|
2022-03-02 08:16:31 +05:30
|
|
|
|
= gl_badge_tag s_('DefaultBranchLabel|default'), { variant: :info, size: :sm }, { class: 'gl-ml-2' }
|
2018-05-09 12:01:36 +05:30
|
|
|
|
- elsif merged
|
2022-03-02 08:16:31 +05:30
|
|
|
|
= gl_badge_tag s_('Branches|merged'), { variant: :info, size: :sm }, { class: 'gl-ml-2', title: s_('Branches|Merged into %{default_branch}') % { default_branch: @repository.root_ref }, data: { toggle: 'tooltip', container: 'body' } }
|
2018-05-09 12:01:36 +05:30
|
|
|
|
- if protected_branch?(@project, branch)
|
2022-03-02 08:16:31 +05:30
|
|
|
|
= gl_badge_tag s_('Branches|protected'), { variant: :success, size: :sm }, { class: 'gl-ml-2' }
|
2015-09-11 14:41:01 +05:30
|
|
|
|
|
2019-09-04 21:01:54 +05:30
|
|
|
|
= render_if_exists 'projects/branches/diverged_from_upstream', branch: branch
|
|
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
|
.block-truncated
|
|
|
|
|
- if commit
|
|
|
|
|
= render 'projects/branches/commit', commit: commit, project: @project
|
|
|
|
|
- else
|
2021-12-11 22:18:48 +05:30
|
|
|
|
= s_('Branches|Can’t find HEAD commit for this branch')
|
2014-09-02 18:07:02 +05:30
|
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
|
- if branch.name != @repository.root_ref
|
2019-09-30 21:07:59 +05:30
|
|
|
|
.js-branch-divergence-graph
|
2016-09-29 09:46:39 +05:30
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
|
.controls.d-none.d-md-block<
|
2020-06-23 00:09:42 +05:30
|
|
|
|
- if commit_status
|
|
|
|
|
= render 'ci/status/icon', size: 24, status: commit_status, option_css_classes: 'gl-display-inline-flex gl-vertical-align-middle gl-mr-5'
|
|
|
|
|
- elsif show_commit_status
|
|
|
|
|
.gl-display-inline-flex.gl-vertical-align-middle.gl-mr-5
|
|
|
|
|
%svg.s24
|
|
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
|
- if merge_project && create_mr_button?(from: @repository.root_ref, to: branch.name, source_project: @project, target_project: @project)
|
|
|
|
|
= link_to create_mr_path(from: @repository.root_ref, to: branch.name, source_project: @project, target_project: @project), class: 'gl-button btn btn-default' do
|
2018-05-09 12:01:36 +05:30
|
|
|
|
= _('Merge request')
|
2014-09-02 18:07:02 +05:30
|
|
|
|
|
2016-01-14 18:37:52 +05:30
|
|
|
|
- if branch.name != @repository.root_ref
|
2019-12-21 20:55:43 +05:30
|
|
|
|
= link_to project_compare_index_path(@project, from: @repository.root_ref, to: branch.name),
|
2021-01-29 00:20:46 +05:30
|
|
|
|
class: "gl-button btn btn-default js-onboarding-compare-branches #{'gl-ml-3' unless merge_project}",
|
2019-12-21 20:55:43 +05:30
|
|
|
|
method: :post,
|
2018-05-09 12:01:36 +05:30
|
|
|
|
title: s_('Branches|Compare') do
|
|
|
|
|
= s_('Branches|Compare')
|
2016-01-14 18:37:52 +05:30
|
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
|
= render 'projects/buttons/download', project: @project, ref: branch.name, pipeline: @refs_pipelines[branch.name], class: 'gl-vertical-align-top'
|
2016-01-14 18:37:52 +05:30
|
|
|
|
|
2022-03-02 08:16:31 +05:30
|
|
|
|
= render 'projects/branches/delete_branch_modal_button', project: @project, branch: branch, merged: merged
|