summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-03-08 06:38:00 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-03-08 06:38:00 +0000
commit3a39fc6176809757cc556c50dbd0a290e03902fc (patch)
tree5ac6de0fd977f84b0bad19026fb6a271133d82f7 /lib
parentd03dd887173cb04cb15e740985ed6b24f631179f (diff)
downloadredmine-3a39fc6176809757cc556c50dbd0a290e03902fc.tar.gz
redmine-3a39fc6176809757cc556c50dbd0a290e03902fc.zip
scm: git: add core.quotepath = false to run git command (#5251).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5049 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib')
-rw-r--r--lib/redmine/scm/adapters/git_adapter.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/redmine/scm/adapters/git_adapter.rb b/lib/redmine/scm/adapters/git_adapter.rb
index 018ac459f..46bf44d8e 100644
--- a/lib/redmine/scm/adapters/git_adapter.rb
+++ b/lib/redmine/scm/adapters/git_adapter.rb
@@ -334,7 +334,7 @@ module Redmine
def scm_cmd(*args, &block)
repo_path = root_url || url
- full_args = [GIT_BIN, '--git-dir', repo_path]
+ full_args = [GIT_BIN, '--git-dir', repo_path, '-c', 'core.quotepath=false']
full_args += args
ret = shellout(full_args.map { |e| shell_quote e.to_s }.join(' '), &block)
if $? && $?.exitstatus != 0