method removeRemoteBranch documentation in bbn\Api\Git

function(string $repository, string $branch, string $user, string $passw, string $server = 'github.com') { $remote = 'https://'.$user.':'.$passw.'@'.$server.'/'.$repository.'.git'; try{ $output = $this->begin() ->run("git push --delete $remote $branch") ->end(); } catch(Exception $e) { return false; } return is_object($output); } return false; }

BBN is a suite of PHP and JS libraries and VueJS components - all open-source! bbn.io, build applications, the quick way

This website uses cookies to ensure you get the best experience on our website.