Banago\PHPloy\Git::__construct PHP 메소드

__construct() 공개 메소드

Git constructor.
public __construct ( null $repo = null )
$repo null
    public function __construct($repo = null)
    {
        $this->repo = $repo;
        $this->branch = $this->command('rev-parse --abbrev-ref HEAD')[0];
        $this->revision = $this->command('rev-parse HEAD')[0];
    }