我有一个名为Live和2分支大师和livecloud的回购。 现在我想添加一个钩子,只有在这个分支中推送提交时,才能从bitbucket branch livecloud更新源代码。
hook.php中的代码
<?php
echo "Begin: Pull code from BitBucket<br/>";
exec('git pull', $output);
foreach ($output as $o) {
echo $o . '<br/>';
}
echo "End: Pull code from BitBucket<br/>";
这显示了带有响应正文的webhooks中的请求,但源代码文件未根据分支中提交的更改进行更新。