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

lib/redmine/scm/adapters/git_adapter.rb

index 23598a9f44d573bbfa160cc85fa0d9157e2b2656..dd01153c742b6f9e15174609e96b11ff8dd389a0 100644 (file)
@@ -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)