I have a git project that contains a git submodule that I cloned from a public read-only repository (i.e. I cannot push to that repository). Is it possible to commit to that submodule? Here's how I tried to do this
[main]$ cd sub
[sub]$ git checkout master
[sub]$ echo test > new-file
[sub]$ git add new-file
[sub]$ git commit -m 'added a new file'
[sub]$ cd ..
[main]$ git add sub
[main]$ git push origin
So far so good. Now the problem is when I go to another computer and I do the following:
[main]$ git pull
[main]$ git submodule update
but it fails with fatal: reference is not a tree: af232.... I thought that this would work because when I do git push origin in main it seems that it pushes all objects for the submodules as well (after all they are in main's .git directory). But apparently, when the second computers pulls, it does not receive these new objects.