git clone提示error: while accessing https://的解决办法

git clone提示error: while accessing https://的解决办法

此故障出现于CentOS6.x版本中,具体原因是因为系统中存在过时的curl和nss库的,从而导致了git clone失败。 解决办法: yum update -y nss curl libcurl 修复前: [root@100mai ~]# git clone https://github.com/philyuchkoff/openssl-1.1.1g-RPM-Builder.git Initialized empty Git repository in /root/openssl-1.1.1g-RPM-Builder/.git/ ...

使用Curl自定义Git.io短域名

使用Curl自定义Git.io短域名

很多时候我们使用一键脚本基本都是用的git.io短链接,比如:git.io/bench.sh | git.io/v2ray.sh等等,如果直接访问git.io生成,都是一些随机字符,无法指定,但是我们可以使用curl来自定义链接。 我们只需要服务器上执行以下代码: curl -i https://git.io -F "url=https://github.com/4kercc/all-script/raw/master/swaps" -F "code=swaps" ...