7 lines
163 B
PowerShell
7 lines
163 B
PowerShell
param (
|
|
[Parameter(ValueFromRemainingArguments = $true)]
|
|
[string[]]$args
|
|
)
|
|
|
|
& git --git-dir=$env:USERPROFILE\.dot --work-tree=$env:USERPROFILE @args
|