Private/ValidateSetValuesGeneratorHelpers.ps1
1 2 3 4 5 6 7 8 |
function Get-Branches() { Invoke-NativeCommand git for-each-ref refs/heads/ --format="%(refname:short)" } function Get-Refs() { Invoke-NativeCommand git for-each-ref refs/ --format="%(refname:short)" } |