BranchΒΆ

Sets or shows the current branch name.

Examples:

1
2
3
4
5
6
    use Siad007\VersionControl\HG\Factory;

    $branchCmd = Factory::createBranch();
    $branchCmd->setName('test');
    $branchCmd->setClean(true);
    $branchCmd->setForce(true);