Is it possible in GitHub to have a submodule in git be automatically linked to the submodule's branch's latest version without having to push the changes from git submodule update
to the parent GitHub repo?
I know that a git submodule can track a remote branch (links below). And it makes sense that normally with code you will not want the behaviour I describe above.
The situation I'm trying to solve is one where there is one parent repo that is owned by somebody else. It contains standards/API information. Within that repo, there are links to different groups' API specs. These are independent of each other and do not need to have their versions coordinated. I control the git repo for my group's APIs. I would like that master repo to simply point to the latest version of my APIs without having to always request to the owners of the master repo to do a pull request.
Links, pointing to a question I'm not asking, but showing that yes I've done my research.