From 30114080df41ca80e77e25f5ef6fd18cfa7acc95 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Thu, 11 Sep 2025 12:37:58 +0200 Subject: [PATCH] feat(git): add git submodule update to download function --- .bash_aliases | 1 + 1 file changed, 1 insertion(+) diff --git a/.bash_aliases b/.bash_aliases index c573b46..d1f82eb 100644 --- a/.bash_aliases +++ b/.bash_aliases @@ -93,6 +93,7 @@ gitf () { local remote="${2:-origin}" git pull "$remote" $(git rev-parse --abbrev-ref HEAD) + git submodule update --recursive ;; # Update all git submodules in this repo. "sd" for submodule download.