From 5e2c1efc2ba7d1ff86605066dcd5df8c04bebd7c Mon Sep 17 00:00:00 2001 From: Mylloon Date: Wed, 11 Oct 2023 16:34:31 +0200 Subject: [PATCH] fix? --- .config/fish/functions/ugc.fish | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.config/fish/functions/ugc.fish b/.config/fish/functions/ugc.fish index b39bbf2..60751c9 100644 --- a/.config/fish/functions/ugc.fish +++ b/.config/fish/functions/ugc.fish @@ -41,6 +41,9 @@ function ugc --description "Update git fork." git switch $default_branch end + # Pull from the origin remote + git pull $origin_remote $default_branch + # Merge upstream git fetch $upstream_remote git pull $upstream_remote $default_branch