Shell Setup
git-loom provides shell completions for tab-completion of commands and options.
PowerShell
Add the following to your PowerShell profile ($PROFILE):
Invoke-Expression (&git-loom completions powershell | Out-String)
To find your profile path, run echo $PROFILE in PowerShell.
Clink
Clink adds completion support to cmd.exe. Create a file at %LocalAppData%\clink\git-loom.lua with:
load(io.popen('git-loom completions clink'):read("*a"))()