Reputation: 594
How to push changes in a git submodule where i have only read-only access.
My problem is when I try to do git submodule update
. I get a fatal: reference is not a tree
error
Upvotes: 5
Views: 3050
Reputation: 1326776
If that submodule is on GitHub, you would need to:
Then your git submodule update
will work.
Upvotes: 1