Magestead\Service\VersionControl::commitFiles PHP Method

commitFiles() public method

Commit the files to the repo
public commitFiles ( )
    public function commitFiles()
    {
        $command = "git commit -m 'Initial commit'";
        new ProcessCommand($command, $this->_projectPath, $this->_output);
        return $this;
    }