Patch #30827 » git_adapter.rb.patch
git_adapter.rb (working copy) | ||
---|---|---|
99 | 99 |
@tags = [] |
100 | 100 |
cmd_args = %w|tag| |
101 | 101 |
git_cmd(cmd_args) do |io| |
102 |
@tags = io.readlines.sort!.map{|t| t.strip}
|
|
102 |
@tags = io.readlines.sort!.map{|t| scm_iconv(@path_encoding, 'UTF-8', t.strip)}
|
|
103 | 103 |
end |
104 | 104 |
@tags |
105 | 105 |
rescue ScmCommandAborted |