ps/Modules/Cole.PowerShell.Developer/TODO/Update-GitBranch.ps1

9 lines
149 B
PowerShell
Raw Normal View History

2023-05-30 22:51:22 -07:00
function Update-GitBranch {
[CmdletBinding()]
param (
)
Invoke-GitCommand -Verb Pull
}
Set-Alias -Name pull -Value Update-GitBranch