]> source.dussan.org Git - redmine.git/commitdiff
scm: git: add core.quotepath = false to run git command (#5251).
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Mon, 7 Mar 2011 12:42:14 +0000 (12:42 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Mon, 7 Mar 2011 12:42:14 +0000 (12:42 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5024 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/redmine/scm/adapters/git_adapter.rb

index 6d2c34ac8b32690da1444758cbf6d41df863e05c..fbc2f2bf524822494518049a1ba346d2b2d8f267 100644 (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]
+          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