3 lines
121 B
PowerShell
3 lines
121 B
PowerShell
[CmdletBinding()]param([string[]]$Remotes = 'All')
|
|
|
|
Invoke-ViaAnsible -Command "git pull" -Remotes:$($Remotes.ToLower())
|