From fba317b20cceeb20741afaf616d4dad13899a5f7 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Thu, 11 Sep 2025 12:38:53 +0200 Subject: [PATCH] feat(git): add git submodule update to download function (#34) Reviewed-on: https://codeberg.org/vlw/dotfiles/pulls/34 --- .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.