Magestead\Service\VersionControl::pushFiles PHP Method

pushFiles() public method

Push all the files to remote repo
public pushFiles ( )
    public function pushFiles()
    {
        $command = "git push -u origin master";
        new ProcessCommand($command, $this->_projectPath, $this->_output);
        return $this;
    }