(1)问题
(2)解决步骤
1) 设置全局编码为 UTF-8
git config --global core.quotepath false
git config --global i18n.commitEncoding utf-8
git config --global i18n.logOutputEncoding utf-8
2) 显示或设置活动代码页的命令(这里可用可不用)
chcp
3) 在PowerShell中查看当前输出编码的变量
$OutputEncoding
4)在PowerShell中查看当前输出编码的变量
[Console]::OutputEncoding = [System.Text.Encoding]::UTF8
5)修改最后一次提交信息
git commit --amend -m "modify: 调通课程审核接口"