From: Toshi MARUYAMA Date: Mon, 7 Mar 2011 14:09:29 +0000 (+0000) Subject: scm: git: remove "core.quotepath = true" to run git command (#5251). X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=984cb589efa8668ce2db0ee3036615f03e53c318;p=redminele%2Fredmine.git scm: git: remove "core.quotepath = true" to run git command (#5251). If path encoding is UTF-8, git adapter may run on Linux. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5029 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/lib/redmine/scm/adapters/git_adapter.rb b/lib/redmine/scm/adapters/git_adapter.rb index dd01153c..6d2c34ac 100644 --- a/lib/redmine/scm/adapters/git_adapter.rb +++ b/lib/redmine/scm/adapters/git_adapter.rb @@ -319,7 +319,7 @@ module Redmine def scm_cmd(*args, &block) repo_path = root_url || url - full_args = [GIT_BIN, '--git-dir', repo_path, '-c', 'core.quotepath=true'] + full_args = [GIT_BIN, '--git-dir', repo_path] full_args += args ret = shellout(full_args.map { |e| shell_quote e.to_s }.join(' '), &block) if $? && $?.exitstatus != 0