scm: git: support path encoding in adapter revisions() (#5251).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5038 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
10830d4dd3
commit
32bd4ec0b4
|
@ -167,7 +167,7 @@ module Redmine
|
||||||
from_to << "#{identifier_to}" if identifier_to
|
from_to << "#{identifier_to}" if identifier_to
|
||||||
cmd_args << from_to if !from_to.empty?
|
cmd_args << from_to if !from_to.empty?
|
||||||
cmd_args << "--since=#{options[:since].strftime("%Y-%m-%d %H:%M:%S")}" if options[:since]
|
cmd_args << "--since=#{options[:since].strftime("%Y-%m-%d %H:%M:%S")}" if options[:since]
|
||||||
cmd_args << "--" << path if path && !path.empty?
|
cmd_args << "--" << scm_iconv(@path_encoding, 'UTF-8', path) if path && !path.empty?
|
||||||
|
|
||||||
scm_cmd *cmd_args do |io|
|
scm_cmd *cmd_args do |io|
|
||||||
files=[]
|
files=[]
|
||||||
|
|
Loading…
Reference in New Issue