Logins may be showing incorrect profile information. Please email psgadmin at microsoft.com for support.
Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
psrod
1.10.0
Private/InsideGit.ps1
Function
Get-isInsideGit
(
)
{
try
{
if
(
git
rev-parse
--is-inside-work-tree
)
{
return
$true
}
return
$false
}
catch
{
return
$false
}
}