Skip to content

Instantly share code, notes, and snippets.

@defulmere
Forked from cowboy/github_post_recieve.php
Created December 7, 2020 01:16
Show Gist options
  • Save defulmere/b06a6aea11b1efc46e30894f1077f538 to your computer and use it in GitHub Desktop.
Save defulmere/b06a6aea11b1efc46e30894f1077f538 to your computer and use it in GitHub Desktop.
GitHub PHP webhook to auto-pull on repo push
<?php
// Use in the "Post-Receive URLs" section of your GitHub repo.
if ( $_POST['payload'] ) {
shell_exec( 'cd /srv/www/git-repo/ && git reset --hard HEAD && git pull' );
}
?>hi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment