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
This commit is contained in:
Toshi MARUYAMA 2011-03-07 14:09:29 +00:00
parent 30063d14c1
commit 984cb589ef
1 changed files with 1 additions and 1 deletions

View File

@ -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