Magestead\Service\VersionControl::execute PHP Method

execute() protected method

protected execute ( Symfony\Component\Console\Output\OutputInterface $output )
$output Symfony\Component\Console\Output\OutputInterface
    protected function execute(OutputInterface $output)
    {
        $output->writeln('<info>Configuring GIT repo</info>');
        $this->init();
        $output->writeln('<comment>Adding files to repo</comment>');
        $this->addFiles();
        $output->writeln('<comment>Committing files to repo</comment>');
        $this->commitFiles();
    }