金鹿号

金鹿号金鹿号

金鹿号是英国探险家、著名海盗德雷克,在环球航行时,为纪念通过麦哲伦海峡剩下的最后一艘船,德瑞克将之改名为金鹿号(Golden Hind),因为此船赞助人海顿爵士的徽章盾牌上是一只金鹿。

最近入手了个采集卡

前几天发的那篇文章,好多人吐槽照片像用老年机拍的。能怪我么,本身光线就不好,还反光,在压缩下。 ┑( ̄Д  ̄)┍

好吧,谁让我宠你们,忍痛斥巨资(四十三块五毛),买了个采集卡。

斥巨资购买采集卡斥巨资购买采集卡

经过,3天的漫长等待......

饱经沧桑的采集卡和赠品饱经沧桑的采集卡和赠品

Git 设置代理 加快clone速度

国内访问Github本身就挺难的,但是加上长城宽带简直男上加男

当然直接修改~/.gitconfig文件也可以当然直接修改~/.gitconfig文件也可以

info:Shell走代理的方法:传送门
注意: 代理地址不要加引号,会导致gclient下载出错
1.https.proxy设置是无用的, 只需要设置http.proxy(带查证)
2.使用socks5h://更好, 查询远端DNS

Git设置代理

#设置http代理
git config --global http.proxy socks5://127.0.0.1:1080
#设置https代理
git config --global https.proxy socks5://127.0.0.1:1080
#关闭ssl验证
git config --global http.sslVerify false
git config --global https.sslVerify false

#只对github.com
git config --global http.https://github.com.proxy socks5://127.0.0.1:1080

Git 取消代理设置

#取消http代理
git config --global --unset http.proxy
#取消https代理
git config --global --unset https.proxy
#开启ssl验证
git config --global http.sslVerify true
git config --global https.sslVerify true

#取消只对github.com代理
git config --global --unset http.https://github.com.proxy