BundleΒΆ

Creates a changegroup file

Examples:

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

    $bundleCmd = Factory::createBundle();
    $bundleCmd->setFile('C:\\xampp\\file\\');
    $bundleCmd->setSsh('testSSH');
    $bundleCmd->setInsecure(true);
    $bundleCmd->setVerbose(true);
    $bundleCmd->setEncoding('UTF-8');
    $bundleCmd->execute();