博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Git for window 提示 Your console font probably doesn't support Unicode.
阅读量:4147 次
发布时间:2019-05-25

本文共 988 字,大约阅读时间需要 3 分钟。

一、现象

Warning: Your console font probably doesn't support Unicode. If you experience strange characters in the output, consider switching to a TrueType font such as Consolas!====================================完整D:\PythonProject\python3-webapp-Su\www>git add .D:\PythonProject\python3-webapp-Su\www>git commit -m "Python基础-Day 11 - 编写日志创建页"[master b98d0cb] Python»ù´¡-Day 11 - ±àдÈÕ־´´½¨ҳ 11 files changed, 6 insertions(+), 6 deletions(-)Warning: Your console font probably doesn't support Unicode. If you experience strange characters in the output, consider switching to a TrueType font such as Consolas!D:\PythonProject\python3-webapp-Su\www>git push -u origin master

二、修改

cmd窗口属性,右键设置”新宋体“

这里写图片描述

三、修改结果

警告消失了

D:\PythonProject\python3-webapp-Su\www>git commit -m "nothing 测试"On branch masterYour branch is up to date with 'origin/master'.D:\PythonProject\python3-webapp-Su\www>git push -u origin masterEverything up-to-dateBranch 'master' set up to track remote branch 'master' from 'origin'.
你可能感兴趣的文章
Python-jenkins模块获取jobs的执行状态
查看>>
【Python】如何对xml文件进行新增、修改和删除等操作
查看>>
【Python基础1】变量和字符串定义
查看>>
【Python基础2】python字符串方法及格式设置
查看>>
【Python】random生成随机数
查看>>
【Python基础3】数字类型与常用运算
查看>>
Jenkins迁移jobs
查看>>
【Python基础4】for循环、while循环与if分支
查看>>
【Python基础5】列表和元组
查看>>
【Python基础6】格式化字符串
查看>>
【Python基础7】字典
查看>>
【Python基础8】函数参数
查看>>
【Python基础9】浅谈深浅拷贝及变量赋值
查看>>
Jenkins定制一个具有筛选功能的列表视图
查看>>
【Python基础10】探索模块
查看>>
【Python】将txt文件转换为html
查看>>
[Linux]Shell脚本实现按照模块信息拆分文件内容
查看>>
Windows安装git
查看>>
【Python】对象属性操作内置函数(hasattr/getattr...)
查看>>
Python classmethod类方法修饰符
查看>>