From 90d4447bd3122ace1655e7a8ef01eb6ef59e2f79 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Mon, 7 Mar 2011 13:14:44 +0000 Subject: [PATCH] scm: git: change core.quotepath = true temporarily to run git command (#5251). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5025 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- lib/redmine/scm/adapters/git_adapter.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/redmine/scm/adapters/git_adapter.rb b/lib/redmine/scm/adapters/git_adapter.rb index fbc2f2bf5..23598a9f4 100644 --- a/lib/redmine/scm/adapters/git_adapter.rb +++ b/lib/redmine/scm/adapters/git_adapter.rb @@ -319,7 +319,8 @@ module Redmine def scm_cmd(*args, &block) repo_path = root_url || url - full_args = [GIT_BIN, '--git-dir', repo_path, '-c', 'core.quotepath=false'] + # full_args = [GIT_BIN, '--git-dir', repo_path, '-c', 'core.quotepath=false'] + full_args = [GIT_BIN, '--git-dir', repo_path, '-c', 'core.quotepath=true'] full_args += args ret = shellout(full_args.map { |e| shell_quote e.to_s }.join(' '), &block) if $? && $?.exitstatus != 0