##// END OF EJS Templates
scm: git: support path encoding in adapter revisions() (#5251)....
Toshi MARUYAMA -
r4918:32bd4ec0b43f
parent child
Show More
@@ -167,7 +167,7 module Redmine
167 from_to << "#{identifier_to}" if identifier_to
167 from_to << "#{identifier_to}" if identifier_to
168 cmd_args << from_to if !from_to.empty?
168 cmd_args << from_to if !from_to.empty?
169 cmd_args << "--since=#{options[:since].strftime("%Y-%m-%d %H:%M:%S")}" if options[:since]
169 cmd_args << "--since=#{options[:since].strftime("%Y-%m-%d %H:%M:%S")}" if options[:since]
170 cmd_args << "--" << path if path && !path.empty?
170 cmd_args << "--" << scm_iconv(@path_encoding, 'UTF-8', path) if path && !path.empty?
171
171
172 scm_cmd *cmd_args do |io|
172 scm_cmd *cmd_args do |io|
173 files=[]
173 files=[]
General Comments 0
You need to be logged in to leave comments. Login now