修改 C:\Users\Dell\.ssh\config 文件,添加如下内容:
1 2 3 4 5 6 7
| Host github.com User git Port 22 Hostname github.com IdentityFile "C:/Users/Dell/.ssh/id_ecdsa" TCPKeepAlive yes ProxyCommand connect -S 127.0.0.1:7891 -a none %h %p
|
全局设置 GPG 签名工具
GPG4Win 下载地址:https://www.gpg4win.org/
1
| git config --global gpg.program "C:/Program Files (x86)/GnuPG/bin/gpg.exe"
|
列举 GPG Key
1
| gpg --list-secret-keys --keyid-format=long
|
针对 Git Repo 启用 GPG 签名
1 2
| git config --local user.signingkey [YOUR GPG KEY] git config --local commit.gpgsign true
|
github走proxy
1.首先开启代理,这种方式只支持https方式,ssh不行
2.给全局git-config配置代理
1
| git config --global http.https://github.com.proxy socks5://127.0.0.1:50001
|
3.clone的时候使用proxy
1
| git clone https://github.com/xxx.git -c http.proxy=socks5://127.0.0.1:50001
|
4.取消全局代理
1
| git config --global --unset http.https://github.com.proxy
|
直接用git下载Gist ID内容
1
| git clone git@github.com:cc13e0fcf2c348cc126f918e4a3917eb.git
|
github与七牛云持续集成
七牛云的CDN提供API刷新缓存服务,我们可以使用github的webhooks来触发刷新。
1.首先配置github的hook:
在项目里找到settings->Webhooks
设置:Payload URL 项为我们服务器的地址,然后保存
2.生成token,如下:
1
| echo "/v2/tune/refresh" openssl dgst -binary -hmac "用户SK" -sha1 base64 tr + - tr / _
|
3.编写服务端脚本,来触发七牛API:
比如我用PHP来触发http://git.malu.me:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
| <?php #七牛刷新缓存函数 function refresh_qiniu($path){ $message = exec('curl -X POST -H "Authorization: QBox <用户AK>:<生成的token>" http://fusion.qiniuapi.com/v2/tune/refresh -d \''.json_encode($path).'\' -H \'Content-Type: application/json\' 2>&1'); return $message; } $getin = file_get_contents("php://input"); #追加写入日志 file_put_contents('file.log',$getin, FILE_APPENDLOCK_EX); $getinarr = json_decode($getin); $getinarr = $getinarr->commits[0]; $path = array(); #添加文章 if(!empty($getinarr->added) !empty($getinarr->removed)){ echo '刷page:'; $path['urls']=array('http://git.malu.me','http://git.malu.me/index.html'); $path['dirs']=array('http://git.malu.me/page/*'); echo refresh_qiniu($path); } #修改文章 if(!empty($getinarr->modified)){ echo '刷url:'; foreach($getinarr->modified as $key=>$value){ //echo $value; #匹配出文章名 if(preg_match('/-\d\d-\d\d-(.*?)\.md/is', $value, $out)){ //var_dump($out); echo $out[1]; #对中文编码 $renewurl = 'http://git.malu.me/'.urlencode($out[1]).'/'; $path['urls']=array($renewurl); echo refresh_qiniu($path); } } }
|
七牛对象存储301跳转
1
| qrsctl redirect <Bucket> <Key> <RedirectUrl> [<RedirectCode>]
|