错误详情
执行
```bundle exec jekyll serve```时,提示:
Liquid Exception: invalid byte sequence in GBK in _layouts/redirect.html
jekyll 3.3.1 | Error: invalid byte sequence in GBK
解决方案
Command Line Prompt(命令行)
执行一遍
```chcp 65001```,再执行```bundle exec jekyll serve```
Bash Shell
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
jekyll --server --auto
bundle exec jekyll serve