I have two remote git repositories. origin
and github
I push my branch devel
to both repositories.
git push -u origin devel
git push -u github devel
But then, when I do. git push
It would only get pushed to github
.
Is there anyway I can set up my two remotes, so that I can push changes to both repositories with one command ?