From: Toshi MARUYAMA Date: Mon, 7 Mar 2011 13:46:42 +0000 (+0000) Subject: scm: git: use core.quotepath = true to run git command for database safety (#5251). X-Git-Tag: 1.2.0~812 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=30063d14c17b222d848e5e164f54945cb3c5fa92;p=redmine.git scm: git: use core.quotepath = true to run git command for database safety (#5251). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5028 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/lib/redmine/scm/adapters/git_adapter.rb b/lib/redmine/scm/adapters/git_adapter.rb index 23598a9f4..dd01153c7 100644 --- a/lib/redmine/scm/adapters/git_adapter.rb +++ b/lib/redmine/scm/adapters/git_adapter.rb @@ -319,7 +319,6 @@ 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=true'] full_args += args ret = shellout(full_args.map { |e| shell_quote e.to_s }.join(' '), &block)