簡單利用coding結合git實現webhookphp
1.建立webhook.phplinux
確保服務器上能以ssh方式進行git pull操做git
確保shell_exec能執行,在php.ini中 disable_functions 中去掉 shell_exec
<?php $pwd = getcwd(); $command = 'cd ' . $pwd . ' && git pull'; $output = shell_exec($command); print $output; ?>
2.設置權限web
linux服務器上項目默認權限是root用戶,而用戶訪問webhook.php的權限是www,www是沒有權限執行git pull操做的,因此須要改變項目全部者權限shell
chown -R www catalogue
3.coding配置webhook設置服務器