示例#1
0
 /**
  * This method will simply delete the remote branch specified in $branchObject
  * 
  * @param Sadekbaroudi\Gitorade\Branches\BranchRemote $branchObject object representing branch to delete
  */
 public function remoteDelete($branchObject)
 {
     $this->getGit()->push($branchObject->getAlias(), ":" . $branchObject->getBranch());
 }