1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | <?php /* * gitutil.git_exec_nix.php * gitphp: A PHP git repository browser * Component: Git utility - execute git command on *nix * * Copyright (C) 2008 Christopher Han <xiphux@gmail.com> */ function git_exec_nix($project, $command) { global $gitphp_conf; $cmd = $gitphp_conf['gitbin'] . " --git-dir=" . $project . " " . $command; return shell_exec($cmd); } ?> |