Git使用笔记 2020-04-02 命令行下不显示中文的问题: 123456789101112131415161718set LESSCHARSET=utf-8git config --global core.quotepath false# 记住密码git config --global credential.helper store# 修改回车符处理git config --global core.autocrlf false# 从指定的 remote 获取指定的 commitgit fetch [nick_name] <sha1-of-commit-of-interest>git reset --hard FETCH_HEAD# 拉取taggit fetch --tags# 清除远程已删除而本地缓存的分支git remote prune origin Newer nodejs使用笔记 Older Chromium学习笔记:程序启动入口分析(Windows)