We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 96c7f70 + e9c6801 commit 2051612Copy full SHA for 2051612
src/aliases.ps1
@@ -369,3 +369,13 @@ function gwip {
369
git rm $(git ls-files --deleted) 2> $null
370
git commit --no-verify -m "--wip-- [skip ci]"
371
}
372
+function ggl {
373
+ $CurrentBranch = Get-Git-CurrentBranch
374
+
375
+ git pull origin $CurrentBranch
376
+}
377
+function ggp {
378
379
380
+ git push origin $CurrentBranch
381
src/git-aliases.psm1
@@ -113,7 +113,9 @@ $FunctionsToExport = @(
113
'glum',
114
'gvt',
115
'gwch',
116
- 'gwip'
+ 'gwip',
117
+ 'ggl',
118
+ 'ggp'
119
)
120
121
Export-ModuleMember -Function $FunctionsToExport
0 commit comments