Commit 2108e636 authored by Rémy Coutable's avatar Rémy Coutable

Resolve conflict in lib/gitlab/git/repository.rb

Signed-off-by: default avatarRémy Coutable <remy@rymai.me>
parent 7d362b41
......@@ -1246,19 +1246,11 @@ module Gitlab
# Gitaly migration: https://gitlab.com/gitlab-org/gitaly/issues/695
def git_merged_branch_names(branch_names = [])
root_sha = find_branch(root_ref).target
<<<<<<< HEAD
git_arguments =
%W[branch --merged #{root_sha}
--format=%(refname:short)\ %(objectname)] + branch_names
=======
git_arguments =
%W[branch --merged #{root_sha}
--format=%(refname:short)\ %(objectname)] + branch_names
>>>>>>> origin/master
lines = run_git(git_arguments).first.lines
lines.each_with_object([]) do |line, branches|
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment