This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/main/gitui_.php
2015-03-08 04:48:22 +01:00

10 lines
281 B
PHP

<?php
if(isset($_REQUEST['pull'])) {
header('Content-Type: text/plain');
print shell_exec('git -C /var/www/flashii.net pull > /var/www/autopull.log');
}
?>
<form method="post" action="">
<input type="submit" name="pull" value="Pull from Repository" />
</form>