Respect the configured git path for imported gitlab-shell operations
This commit is contained in:
parent
cc72e1bc5b
commit
91ff0eaa13
2 changed files with 13 additions and 13 deletions
|
@ -67,7 +67,7 @@ module Gitlab
|
|||
tags_option = tags ? '--tags' : '--no-tags'
|
||||
|
||||
logger.info "Fetching remote #{name} for repository #{repository_absolute_path}."
|
||||
cmd = %W(git fetch #{name} --quiet)
|
||||
cmd = %W(#{Gitlab.config.git.bin_path} fetch #{name} --quiet)
|
||||
cmd << '--prune' if prune
|
||||
cmd << '--force' if force
|
||||
cmd << tags_option
|
||||
|
@ -85,7 +85,7 @@ module Gitlab
|
|||
|
||||
def push_branches(remote_name, timeout, force, branch_names)
|
||||
logger.info "Pushing branches from #{repository_absolute_path} to remote #{remote_name}: #{branch_names}"
|
||||
cmd = %w(git push)
|
||||
cmd = %W(#{Gitlab.config.git.bin_path} push)
|
||||
cmd << '--force' if force
|
||||
cmd += %W(-- #{remote_name}).concat(branch_names)
|
||||
|
||||
|
@ -102,7 +102,7 @@ module Gitlab
|
|||
branches = branch_names.map { |branch_name| ":#{branch_name}" }
|
||||
|
||||
logger.info "Pushing deleted branches from #{repository_absolute_path} to remote #{remote_name}: #{branch_names}"
|
||||
cmd = %W(git push -- #{remote_name}).concat(branches)
|
||||
cmd = %W(#{Gitlab.config.git.bin_path} push -- #{remote_name}).concat(branches)
|
||||
|
||||
success = run(cmd, repository_absolute_path)
|
||||
|
||||
|
@ -143,7 +143,7 @@ module Gitlab
|
|||
end
|
||||
|
||||
def remove_origin_in_repo
|
||||
cmd = %w(git remote rm origin)
|
||||
cmd = %W(#{Gitlab.config.git.bin_path} remote rm origin)
|
||||
run(cmd, repository_absolute_path)
|
||||
end
|
||||
|
||||
|
@ -223,7 +223,7 @@ module Gitlab
|
|||
masked_source = mask_password_in_url(source)
|
||||
|
||||
logger.info "Importing project from <#{masked_source}> to <#{repository_absolute_path}>."
|
||||
cmd = %W(git clone --bare -- #{source} #{repository_absolute_path})
|
||||
cmd = %W(#{Gitlab.config.git.bin_path} clone --bare -- #{source} #{repository_absolute_path})
|
||||
|
||||
success = run_with_timeout(cmd, timeout, nil)
|
||||
|
||||
|
@ -266,7 +266,7 @@ module Gitlab
|
|||
FileUtils.mkdir_p(File.dirname(to_path), mode: 0770)
|
||||
|
||||
logger.info "Forking repository from <#{from_path}> to <#{to_path}>."
|
||||
cmd = %W(git clone --bare --no-local -- #{from_path} #{to_path})
|
||||
cmd = %W(#{Gitlab.config.git.bin_path} clone --bare --no-local -- #{from_path} #{to_path})
|
||||
|
||||
run(cmd, nil) && Gitlab::Git::Repository.create_hooks(to_path, global_hooks_path)
|
||||
end
|
||||
|
|
|
@ -28,7 +28,7 @@ describe Gitlab::Git::GitlabProjects do
|
|||
describe '#push_branches' do
|
||||
let(:remote_name) { 'remote-name' }
|
||||
let(:branch_name) { 'master' }
|
||||
let(:cmd) { %W(git push -- #{remote_name} #{branch_name}) }
|
||||
let(:cmd) { %W(#{Gitlab.config.git.bin_path} push -- #{remote_name} #{branch_name}) }
|
||||
let(:force) { false }
|
||||
|
||||
subject { gl_projects.push_branches(remote_name, 600, force, [branch_name]) }
|
||||
|
@ -46,7 +46,7 @@ describe Gitlab::Git::GitlabProjects do
|
|||
end
|
||||
|
||||
context 'with --force' do
|
||||
let(:cmd) { %W(git push --force -- #{remote_name} #{branch_name}) }
|
||||
let(:cmd) { %W(#{Gitlab.config.git.bin_path} push --force -- #{remote_name} #{branch_name}) }
|
||||
let(:force) { true }
|
||||
|
||||
it 'executes the command' do
|
||||
|
@ -65,7 +65,7 @@ describe Gitlab::Git::GitlabProjects do
|
|||
let(:tags) { true }
|
||||
let(:args) { { force: force, tags: tags, prune: prune }.merge(extra_args) }
|
||||
let(:extra_args) { {} }
|
||||
let(:cmd) { %W(git fetch #{remote_name} --quiet --prune --tags) }
|
||||
let(:cmd) { %W(#{Gitlab.config.git.bin_path} fetch #{remote_name} --quiet --prune --tags) }
|
||||
|
||||
subject { gl_projects.fetch_remote(remote_name, 600, args) }
|
||||
|
||||
|
@ -98,7 +98,7 @@ describe Gitlab::Git::GitlabProjects do
|
|||
|
||||
context 'with --force' do
|
||||
let(:force) { true }
|
||||
let(:cmd) { %W(git fetch #{remote_name} --quiet --prune --force --tags) }
|
||||
let(:cmd) { %W(#{Gitlab.config.git.bin_path} fetch #{remote_name} --quiet --prune --force --tags) }
|
||||
|
||||
it 'executes the command with forced option' do
|
||||
stub_spawn(cmd, 600, tmp_repo_path, {}, success: true)
|
||||
|
@ -109,7 +109,7 @@ describe Gitlab::Git::GitlabProjects do
|
|||
|
||||
context 'with --no-tags' do
|
||||
let(:tags) { false }
|
||||
let(:cmd) { %W(git fetch #{remote_name} --quiet --prune --no-tags) }
|
||||
let(:cmd) { %W(#{Gitlab.config.git.bin_path} fetch #{remote_name} --quiet --prune --no-tags) }
|
||||
|
||||
it 'executes the command' do
|
||||
stub_spawn(cmd, 600, tmp_repo_path, {}, success: true)
|
||||
|
@ -120,7 +120,7 @@ describe Gitlab::Git::GitlabProjects do
|
|||
|
||||
context 'with no prune' do
|
||||
let(:prune) { false }
|
||||
let(:cmd) { %W(git fetch #{remote_name} --quiet --tags) }
|
||||
let(:cmd) { %W(#{Gitlab.config.git.bin_path} fetch #{remote_name} --quiet --tags) }
|
||||
|
||||
it 'executes the command' do
|
||||
stub_spawn(cmd, 600, tmp_repo_path, {}, success: true)
|
||||
|
@ -165,7 +165,7 @@ describe Gitlab::Git::GitlabProjects do
|
|||
describe '#import_project' do
|
||||
let(:project) { create(:project) }
|
||||
let(:import_url) { TestEnv.factory_repo_path_bare }
|
||||
let(:cmd) { %W(git clone --bare -- #{import_url} #{tmp_repo_path}) }
|
||||
let(:cmd) { %W(#{Gitlab.config.git.bin_path} clone --bare -- #{import_url} #{tmp_repo_path}) }
|
||||
let(:timeout) { 600 }
|
||||
|
||||
subject { gl_projects.import_project(import_url, timeout) }
|
||||
|
|
Loading…
Reference in a new issue