本人打算在windows 7下,使用octopress搭建博客。
有一个问题不得其解:
cmd终端,使用chcp 65001, rake generate编译没有问题。
但是,用git bash终端,已经设置了变量如下:
LC_ALL=en_US.UTF-8
LANG=en_US.UTF-8
LESSCHARSET=utf-8
rake generate产生下面问题:
octopress/plugins/backtick_code_block.rb:13:in
gsub': incompat ible character encodings: UTF-8 and GBK (Encoding::CompatibilityError) from octopress/plugins/backtick_code_block.rb:13:in
re nder_code_block'
from octopress/plugins/octopress_filters.rb:12:inpre_ filter' from octopress/plugins/octopress_filters.rb:28:in
pre_ render'
from octopress/plugins/post_filters.rb:112:inblock in pre_render' from octopress/plugins/post_filters.rb:111:in
each'
from octopress/plugins/post_filters.rb:111:inpre_rend er' from octopress/plugins/post_filters.rb:166:in
do_layou t'
from c:/Ruby200-x64/lib/ruby/gems/2.0.0/gems/jekyll-0.12.0/lib/jekyll/po
st.rb:195:inrender' from c:/Ruby200-x64/lib/ruby/gems/2.0.0/gems/jekyll-0.12.0/lib/jekyll/si te.rb:200:in
block in render'
from c:/Ruby200-x64/lib/ruby/gems/2.0.0/gems/jekyll-0.12.0/lib/jekyll/si
te.rb:199:ineach' from c:/Ruby200-x64/lib/ruby/gems/2.0.0/gems/jekyll-0.12.0/lib/jekyll/si te.rb:199:in
render'
from c:/Ruby200-x64/lib/ruby/gems/2.0.0/gems/jekyll-0.12.0/lib/jekyll/si
te.rb:41:inprocess' from c:/Ruby200-x64/lib/ruby/gems/2.0.0/gems/jekyll-0.12.0/bin/jekyll:26 4:in
'
from c:/Ruby200-x64/bin/jekyll:23:inload' from c:/Ruby200-x64/bin/jekyll:23:in
'
有谁可以帮忙分析一下,是怎么回事,git bash有等价cmd终端的chcp类似命令吗?
补充说明:
在当前git bash终端下,输入中文是没有问题的;同时中文问题只是发生在代码高亮模块里,其他位置的中文是没有这个情况的,如果不需要代码高亮,也是没有这个问题。
git bash 터미널은 기본적으로 cmd 터미널과 동일하기 때문입니다.
Windows 터미널에 대한 자세한 지침은 http://www.soimort.org/posts/118/ 이 문서를 참조하세요.
저는 git bash에서 작업하고 싶기 때문에 Linux에서 사용하는 대부분의 명령을 git bash에서 제공합니다.
대본을 작성했습니다.
으아악컴파일 중에 일시적으로 65001 모드로 변경되었으며, 컴파일 후에는 현재 936 모드로 복원되었습니다.
@Evian, 열정적이고 시의적절하며 전문적인 지원에 진심으로 감사드립니다! ! !