From 26612ee1d2b25d6ea30148db43ce6c46519b37cc Mon Sep 17 00:00:00 2001 From: jolheiser Date: Sat, 26 Jul 2025 06:20:50 -0500 Subject: [PATCH] combine refspecs into single git command for git-bug --- apps/nogui/nushell/git-bug.nu | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/apps/nogui/nushell/git-bug.nu b/apps/nogui/nushell/git-bug.nu index aa1fa66..fd92c06 100644 --- a/apps/nogui/nushell/git-bug.nu +++ b/apps/nogui/nushell/git-bug.nu @@ -9,13 +9,11 @@ export def "git bug init" [] { } export def "git bug pull" [] { - ^git fetch origin refs/bugs/*:refs/bugs/* - ^git fetch origin refs/identities/*:refs/identities/* + ^git fetch origin refs/bugs/*:refs/bugs/* refs/identities/*:refs/identities/* } export def "git bug push" [] { - ^git push origin refs/bugs/*:refs/bugs/* - ^git push origin refs/identities/*:refs/identities/* + ^git push origin refs/bugs/*:refs/bugs/* refs/identities/*:refs/identities/* } def "bug-id" [] {