Types/git.push/Git.Push.Info.format.ps1

Write-FormatView -TypeName Git.Push.Info -Action {
    Write-FormatViewExpression -ScriptBlock {
        "To " + $_.GitUrl + [Environment]::NewLine
    }
    Write-FormatViewExpression -ScriptBlock {
        " " + $_.LastCommitHash + '..' + $_.CommitHash + " " + $_.SourceBranch + " -> " + $_.DestinationBranch
    } -ForegroundColor Verbose
}