summaryrefslogtreecommitdiff
path: root/app/services/create_branch_service.rb
diff options
context:
space:
mode:
authorLin Jen-Shin <godfat@godfat.org>2016-11-15 07:22:50 +0800
committerLin Jen-Shin <godfat@godfat.org>2016-11-15 07:51:09 +0800
commitd8fe2fac7e681ddbff3c7a5338f939eb2d540e38 (patch)
tree505a78a33a4c7840c14dff78f40ca3617da91065 /app/services/create_branch_service.rb
parent5de74551ace7b6df9fdb2a3c8aa30c836d693728 (diff)
downloadgitlab-ce-d8fe2fac7e681ddbff3c7a5338f939eb2d540e38.tar.gz
Make sure we have the branch on the other project
Diffstat (limited to 'app/services/create_branch_service.rb')
-rw-r--r--app/services/create_branch_service.rb10
1 files changed, 1 insertions, 9 deletions
diff --git a/app/services/create_branch_service.rb b/app/services/create_branch_service.rb
index f4270a09928..ecb5994fab8 100644
--- a/app/services/create_branch_service.rb
+++ b/app/services/create_branch_service.rb
@@ -7,15 +7,7 @@ class CreateBranchService < BaseService
return failure if failure
new_branch = if source_project != @project
- repository.fetch_ref(
- source_project.repository.path_to_repo,
- "refs/heads/#{ref}",
- "refs/heads/#{branch_name}"
- )
-
- repository.after_create_branch
-
- repository.find_branch(branch_name)
+ @project.fetch_ref(source_project, branch_name, ref)
else
repository.add_branch(current_user, branch_name, ref)
end