You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the testdata has changed and you want to update the repo to use the new current testdata follow these steps:
18
+
19
+
```bash
20
+
cd tests/data
21
+
git pull origin main
22
+
cd ..
23
+
git add data
24
+
git commit -m "Update testdata"
25
+
git push
26
+
```
27
+
28
+
This will set up the repo to use the current ref of the submodule.
29
+
30
+
**Note**: If you wan to add data you do so by either checking out the submodule as a regular repo and just add-commit-push from there or use the subdirectory containing the submodule like a regular git repository (don't forget to manually update the ref in the main repo)
0 commit comments