Git/Start-GitDev.ps1

function Start-GitDev {
    if (!(Get-IsGitRepo (Get-Location))) {
        throw '{0} is not a git repository' -f (Get-Location)
    }
    
    Import-NAVModulesForServerInstance
    Set-NavServerInstance (Split-Path (Get-Location) -Leaf) -Start
}

Export-ModuleMember -Function Start-GitDev