单独为 Github 设置代理而不影响其他 Git 仓库(如 Gitee)的操作
19访客 91字under Notes of Programming
以下方法可使在 Clone 或 Push Github 上的项目时通过代理执行;同时其他诸如对 Gitee 进行 Git 操作则不会通过代理git config --global http.https://github.com.proxy http://127.0.0.1:7890 git c...
风云瞬息,气候恒驻。
under Notes of Programming
以下方法可使在 Clone 或 Push Github 上的项目时通过代理执行;同时其他诸如对 Gitee 进行 Git 操作则不会通过代理git config --global http.https://github.com.proxy http://127.0.0.1:7890 git c...
under Website Notes of Programming
报错日志[2023-05-08 16:08:25.900] debug: ⛔️ Server wasn't able to start properly. [2023-05-08 16:08:25.901] error: knex: Required configuration option...
under Website Notes of Programming
tooltip: { trigger: 'axis', backgroundColor: 'rgba(38,36,33,0.8)', axisPointer: { type: 'none', /...
under Website Notes of Programming
div { display: -webkit-box; overflow: hidden; text-overflow: ellipsis; //省略号 -webkit-line-clamp: 4; //指定保留行数 ...
under Website Notes of Programming
通过 legend.textStyle.padding 调节,其中 padding: [0, 0, 0, 4] 数组最后一位为左侧推出距离,数组四项分别代表 [上边距, 右边距, 下边距, 左边距]。若想使间距小于默认间距,可使用负数,如 padding: [0, 0, 0, -4] ,这...