Mac 添加 PATH 比较简单
- touch ~/.bashrc
- 在 ~/.bashrc 里面添加一句 export PATH=”新的路径:$PATH”,你需要把新的路径写进去,其他任何一个符号都不能改
- 在终端执行 source ~/.bashrc 即可
- 如果还还要加另外一个 PATH,请回到步骤 1 重新做一遍即可。
最后的 bashrc 文件差不多是这样:
export PATH=”/path/1/:$PATH” export PATH=”/path/2/:$PATH”
touch
创建文件
更新文件修改时间
tldr
https://github.com/tldr-pages/tldr
#安装
yarn global add tldr
echo
echo $? 查看上个命令运行结果
chmod
chmod +x 添加权限
git commit -v
git配置
git config --global user.name
你的英文名 git config --global user.email
你的邮箱 git config --global push.default simple
This is the safest option and is suited for beginners. 在 git push 时不必指定 [git config --global core.quotepath false
解决 Windows Git Bash、Linux 下的中文转码问题;git config --global core.editor "code --wait"
用vscode打开merge相关处理,否则就会默认用vim方式编辑了(前提是用code命令可以唤起vscode)git config --global core.autocrlf input
Win Git Bash 时设置