diff --git a/lib/redmine/scm/adapters/git_adapter.rb b/lib/redmine/scm/adapters/git_adapter.rb index 23598a9f..dd01153c 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)