写在前面

最近从Windows移植到Ubuntu,很多工具都需要重新配置,本文记录了Ubuntu 18.04 + SSR + Git组合使用的一些问题,希望能给需要的同学提供一些帮助。

题外话:四月在 git bash 中想要直接打开 typora 对文章进行编辑,发现需要做一个alias,如果没有配置 bashrc 需要配置一下:

1
2
3
$ cat /etc >> ~/.bashrc
然后编辑~/.bashrc,插入`path_to_typora\typora.exe` 其中`path_to_typora`为typora的安装路径,需要注意的是:空格` `和反斜杠`\`要用单引号引用。例如:
alias typora="C:'\'Program' 'Files'\'Typora'\'typora.exe"

设置代理端口

首先查看自己的SSR配置信息,找到PAC\global的代理端口,然后终端执行如下命令配置git

1
$ git config --global http.proxy http://127.0.0.1:2333
1
$ git config --global http.proxy https://127.0.0.1:12333

取消命令如下:

1
$ git config --global --unset http.proxy
1
$ git config --global --unset http.proxy

以上操作也可以在git个配置文件中直接编辑,配置好端口之后速度直线飙升