Skip to content

Instantly share code, notes, and snippets.

@hansgafriedzal
Created March 1, 2023 16:43
Show Gist options
  • Save hansgafriedzal/4171329179f43fe86614a481f3620e2d to your computer and use it in GitHub Desktop.
Save hansgafriedzal/4171329179f43fe86614a481f3620e2d to your computer and use it in GitHub Desktop.
function tgit ($Command, $Path) {
$cmd = 'TortoiseGitProc.exe /command:' + $Command
if ($Path) {
$cmd += ' /path:' + (dir -LiteralPath $Path)
}
& cmd /c "$cmd 2>&1"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment