生成公钥
1
2sudo -Hu www ssh-keygen -t rsa
sudo cat /var/www/.ssh/id_rsa.pub修改GIT配置
1
2sudo -Hu www git config --global user.name "l1n6yun"
sudo -Hu www git config --global user.email "l1n6yun@gmail.com"初始化仓库
1
sudo -Hu www git clone git@github.com:you/project.git /www/wwwroot/project --depth=1
添加钩子文件
1
2
3
4
5
6
7
8
9
10
11
12
13error_reporting(1);
$target = '/www/wwwroot/project';
$token = 'Your hook token';
$json = json_decode(file_get_contents('php://input'), true);
if (empty($json['token']) || $json['token'] !== $token) {
exit('error request');
}
$cmd = "sudo -Hu www cd $target && git pull";
shell_exec($cmd);在托管平台上添加
hook
测试
1
2git commit -am "test hook" --allow-empty
git pushOK,稍微一几秒,正常的话你在代码里配置的目标目录里就会有你的项目文件了。