PHP code example of innmind / git

1. Go to this page and download the library: Download innmind/git library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

innmind / git example snippets


use Innmind\Git\{
    Git,
    Repository\Remote\Name,
    Repository\Remote\Url,
    Revision\Branch,
};
use Innmind\OperatingSystem\Factory;
use Innmind\Url\Path;

$os = Factory::build();
$git = Git::of($os->control(), $os->clock());
$repository = $git->repository(Path::of('/somewhere/on/the/local/machine'))->match(
    static fn($repository) => $repository,
    static fn() => throw new \RuntimeException('The path does not exist'),
);
$_ = $repository->init()->match(
    static fn() => null, // pass
    static fn() => throw new \RuntimeException('Failed to init the repository'),
);
$remotes = $repository->remotes();
$remotes->add(Name::of('origin'), Url::of('[email protected]:Vendor/Repo.git'))
$remotes->push(Branch::of('master'));
$repository
    ->branches()
    ->new(Branch::of('develop'));
$repository
    ->checkout()
    ->revision(Branch::of('develop'));