一个好看还用的终端确实很赏心悦目。那么既然存在,没有不用的道理。那么开始吧。
操作走起
如果有问题,可以看看 https://blog.vini123.com/552
mac 默认的 shell 是 dash, 我们把它设置为 zsh。
chsh -s /bin/zsh
# 如果想用回 dash
chsh -s /bin/bash
一个好看还用的终端确实很赏心悦目。那么既然存在,没有不用的道理。那么开始吧。
如果有问题,可以看看 https://blog.vini123.com/552
mac 默认的 shell 是 dash, 我们把它设置为 zsh。
chsh -s /bin/zsh
# 如果想用回 dash
chsh -s /bin/bash
Mac curl: (7) Failed to connect to raw.github.com port 443: Connection refused 处理
刚新装 mac ,使用 curl 安装 homebrew 和 oh my zsh 时,会遇到 curl: (7) Failed to connect to raw.github.com port 443: Connection refused 和 curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refused 的情况。这个时候,就是你用浏览器打开 raw.github.com 也是打不开的。
199.232.96.133 raw.github.com
199.232.96.133 raw.githubusercontent.com
再去尝试。
然后,可能会出现 ‘git’命令需要使用命令行开发者工具。您要现在安装该工具吗? 选择安装,然后继续。其实,这里如果你先安装了 xcode 就不会出现这个了。
继续执行就会没事了。
brew install node
# curl 安装 oh my zsh 时
curl: (7) Failed to connect to raw.github.com port 443: Connection refused
上边的错误解决请看:https://blog.vini123.com/553
vagrant box remove laravel/homestead
vagrant destroy
# virtualbox 自带 uninstall
# 删除 vagrant
使用 windows terminal 虽然很开心。可是使用 git log -n 1 的时候,出现中文乱码。这个得解决。
git config --global core.quotepath false
git config --global gui.encoding utf-8
git config --global i18n.commit.encoding utf-8
git config --global i18n.logoutputencoding utf-8
$env:LESSCHARSET='utf-8'
win + s 输入环境变量,回车就会出现环境变量设置框。
在环境变量模块增加 LESSCHARSET => utf-8 配置即可
习惯了 mac 的 iterm2。再来用 windows 的, 默认的终端太难用了。弄了个 gitbash 也不是很好用。下个 windows terminal 就相对好一些了。
那就下载 windows terminal 吧。
在 Microsoft Store 中搜 terminal。 找到 windows terminal,并开始下载和安装。
可是,可是这个时候报错。下载错误,查看错误详情,发现提示错误代码为 0x80070422。提示这么明显了,那就解决这个问题。
整站下载小飞兔:
项目中,配置文件的作用是想当美丽的。这样使代码看起来好看,用起来还方便。不至于因为某个条件或场景还跑到逻辑里去修改。vue cli 里边就可以自己定义 .env.production .env.development .env
https://cli.vuejs.org/zh/guide/mode-and-env.html
有下边的概念:
如果不生效,配置不生效,可能是定义对象的时候没以 VUE_APP_ 开头
这里列举几个定义:
# just a flag
ENV = 'production'
# base api
VUE_APP_BASE_API = 'http://117.24.6.252:8002'
# mode
VUE_APP_MODE = 'history'