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.
1 parent 18caa26 commit 9d0bb38Copy full SHA for 9d0bb38
pwsh/functions.ps1
@@ -237,6 +237,18 @@ function Get-GitStatus {
237
}
238
239
# Print git status using g3l
240
+function gss {
241
+ # Fetch git remote
242
+ Write-BoldGreen "Git Remotes"
243
+ git remote -v
244
+ Get-GitStatus
245
+ # Git branch status
246
+ Write-Output "" # New line
247
+ g3l --status
248
+ gbs --remotes
249
+}
250
+
251
+<#
252
function gss {
253
# Fetch git remote
254
# Print-Green-Underline "Git Remotes:"
@@ -250,6 +262,7 @@ function gss {
262
Write-Output "" # new line
263
g3l --status
264
265
+#>
266
267
# Clone a git repository and cd into the created directory
255
268
# https://stackoverflow.com/a/32539370/6346131
0 commit comments