Git.ps1

<#
    .SYNOPSIS
        Open current projet url.
    .DESCRIPTION
        Open the current project url with the default browser
         
    .LINK
        Nexus Innovations : http://www.nexusinno.com
    --------------------------------------------------------------------------------------
    Module 'Nexus.PSToolkit'
    by: Nexus Innovations.
    --------------------------------------------------------------------------------------
#>

function global:Open-CurrentGitUrl()
{
    Start-Process -FilePath (git config --get remote.origin.url);
}