The short: is there a way to have a git repo push to and pull from a list of remote repos (rather than a single \"origin\")?
The long:
Adding new remote
git remote add upstream https://github.com/example-org/example-repo.git git remote -vv
Fetch form multiple locations
git fetch --all
Push to locations
git push -u upstream/dev