Liip\RMT\VCS\Git::publishChanges PHP Method

publishChanges() public method

public publishChanges ( $remote = null )
    public function publishChanges($remote = null)
    {
        $remote = $remote === null ? 'origin' : $remote;
        $this->executeGitCommand("push {$remote} " . $this->getCurrentBranch());
    }