Neos\Flow\Core\Migrations\Git::show PHP Method

show() public static method

Get the result of git show for the current directory.
public static show ( ) : string
return string
    public static function show()
    {
        $output = array();
        exec('git show', $output);
        return implode(PHP_EOL, $output);
    }