feat(git): add git submodule update to download function

This commit is contained in:
Victor Westerlund 2025-09-11 12:37:58 +02:00
parent c931dd9cf7
commit 30114080df
Signed by: vlw
GPG key ID: D0AD730E1057DFC6

View file

@ -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.