This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Git Helpers | |
function _git_url { | |
return $(git config --get remote.origin.url) | |
} | |
function _git_root { | |
$gitDir = git rev-parse --git-dir | |
if ($null -eq $gitDir) { | |
return $null |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Function SimpleContextMenu { | |
param ( | |
[Parameter(Mandatory, Position = 0)] | |
[System.Object] | |
$List, | |
[Parameter(Mandatory = $false, Position = 1)] | |
[string] | |
$Header = "Select" | |
) |
OlderNewer