Skip to content

Instantly share code, notes, and snippets.

View xorus's full-sized avatar
🏠
Working from home

Xorus xorus

🏠
Working from home
View GitHub Profile
<?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");
}
}
/**