I have two authoritative git repositories that I need to push to. Pushing to both is done by adding a line to the .git/config file:
[remote "origin"]
url = repository1
url = repository2
as discussed in pull/push from multiple remote locations.
However every time another member of my team makes a new clone. The .git/config file goes back to only having:
[remote "origin"]
url = repository1
Is there a way to "commit" the configuration changes so that the repository is setup by default to push to both authoritative sources?