ps/Modules/Cole.PowerShell.Developer/TODO/Update-GitBranch.ps1
2023-05-30 22:51:22 -07:00

9 lines
149 B
PowerShell

function Update-GitBranch {
[CmdletBinding()]
param (
)
Invoke-GitCommand -Verb Pull
}
Set-Alias -Name pull -Value Update-GitBranch