Skip to content

Commit 749311b

Browse files
Pull latest main in every submodule (#8537)
* Update to latest main so that yarn.lock is always correct * Update git-setup.sh
1 parent 3cce4e5 commit 749311b

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

git-setup.sh

+7-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,12 @@ for module in "$@"; do
2323
git submodule add --force $project "apps/$module"
2424
# Set the default branch to main
2525
git config -f .gitmodules --add "submodule.apps/$module.branch" main
26-
# Adding the subdmoule ignores the `.gitignore` so a reset is needed
27-
git reset
26+
27+
# Update to the latest from main in that submodule
28+
cd apps/$module && git pull origin main && cd ../..
29+
30+
# We forcefully added the subdmoule which was in .gitignore, so unstage it.
31+
git restore --staged apps/$module
2832
else
2933
# If the module is the API, display a link to request access
3034
if [ "$module" = "api" ]; then
@@ -35,3 +39,4 @@ for module in "$@"; do
3539
fi
3640
fi
3741
done
42+
git restore --staged .gitmodules

0 commit comments

Comments
 (0)