Git
"C:\Program Files\Git\etc\bash.bashrc"
中添加export LESSCHARSET=utf-8
可解决commit中文乱码问题。
Powershell中使用 git diff | out-file -encoding default patch
确保git diff生成的patch文件不会产生乱码
Git + VSCode
NPM, Yarn
NPM config字段所有keys, Yarn通用: https://docs.npmjs.com/misc/config#config-settings
yarn config set init-author-name user
yarn config set init-author-email user@example.com
yarn config set registry "https://registry.npm.taobao.org" //修改为大陆安装源
yarn config list //列出所有已定义keys
Markdown
图片
一般图片
![avatar](http://upload.jianshu.io/users/upload_avatars/5444262/661d8da0-fab6-4252-9c76-3b9d7d8e154f?imageMogr2/auto-orient/strip|imageView2/1/w/300/h/300)
效果 图片链接(简书中无效)
[![avatar](http://upload.jianshu.io/users/upload_avatars/5444262/661d8da0-fab6-4252-9c76-3b9d7d8e154f?imageMogr2/auto-orient/strip|imageView2/1/w/300/h/300 "title")](http://www.jianshu.com/p/0158a5ae5bd3)
超链接
一般链接
[Google](https://www.google.com/)
效果 Google
自动转换链接
<https://www.google.com/>
<admin@example.com>
插入代码
- 在每行代码前加入4个空格或者添加一个制表符(TAB键)
- 在代码两侧添加单个反引号
\
` - 在代码两侧添加三个反引号
```
- 在上一步基础上,在前三个反引号后加上语言种类如
```Javacript
var body = document.querySelector('body');
即可实现对应语言语法高亮,语言名称以及缩写列表可参见此处
效果
var body = document.querySelector('body');