From: Toshi MARUYAMA Date: Tue, 8 Mar 2011 06:38:00 +0000 (+0000) Subject: scm: git: add core.quotepath = false to run git command (#5251). X-Git-Tag: 1.2.0~793 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=3a39fc6176809757cc556c50dbd0a290e03902fc;p=redmine.git scm: git: add core.quotepath = false to run git command (#5251). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5049 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/lib/redmine/scm/adapters/git_adapter.rb b/lib/redmine/scm/adapters/git_adapter.rb index 018ac459f..46bf44d8e 100644 --- a/lib/redmine/scm/adapters/git_adapter.rb +++ b/lib/redmine/scm/adapters/git_adapter.rb @@ -334,7 +334,7 @@ module Redmine def scm_cmd(*args, &block) repo_path = root_url || url - full_args = [GIT_BIN, '--git-dir', repo_path] + full_args = [GIT_BIN, '--git-dir', repo_path, '-c', 'core.quotepath=false'] full_args += args ret = shellout(full_args.map { |e| shell_quote e.to_s }.join(' '), &block) if $? && $?.exitstatus != 0