Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save xorus/5c2d5f885e3a8d946f36 to your computer and use it in GitHub Desktop.

Select an option

Save xorus/5c2d5f885e3a8d946f36 to your computer and use it in GitHub Desktop.
<?php
// ultra basique et non sécurisé
if($_SERVER['REQUEST_METHOD'] === 'POST' && $_SERVER['HTTP_X_GITHUB_EVENT'] == 'push'){
$path = getProjectPath();
exec("cd ".$path." && git pull origin master");
}
}
/**
* Dépend de l'endroit où le projet est cloné en SSH
*/
function getProjectPath()
{
return __DIR__.DIRECTORY_SEPARATOR.'projet-1';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment