UnbundleΒΆ

Applies one or more changegroup files.

Examples:

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

    $unbundleCmd = Factory::createUnbundle();
    $unbundleCmd->addFile('C:\\xampp\\file1\\');
    $unbundleCmd->addFile('C:\\xampp\\file2\\');
    $unbundleCmd->setUpdate(true);
    $unbundleCmd->execute();