Last active
August 29, 2015 13:57
-
-
Save namanyayg/9568205 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$branchname = $_GET['branch']; | |
if (!$branchname) { | |
echo "Please enter a branchname, ?branch=<name>"; | |
return false; | |
} | |
$command = 'cd <directory> && git checkout ' . $branchname; | |
$output = shell_exec($command . ' 2>&1'); | |
echo 'Checking out ' . $branchname . '…<br>'; | |
echo $output . '<br>'; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment