We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cce4e5 commit 749311bCopy full SHA for 749311b
git-setup.sh
@@ -23,8 +23,12 @@ for module in "$@"; do
23
git submodule add --force $project "apps/$module"
24
# Set the default branch to main
25
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
+
+ # 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
32
else
33
# If the module is the API, display a link to request access
34
if [ "$module" = "api" ]; then
@@ -35,3 +39,4 @@ for module in "$@"; do
35
39
fi
36
40
37
41
done
42
+git restore --staged .gitmodules
0 commit comments