方法一:添加多个远程仓库, 分别推送
git remote add oschina <url1>
git remote add github <url2>
git remote -v
git push -u oschina master
git push -u github master
方法二:仓库追加远程地址,一次推送
git remote add github <url1>
git remote set-url --add github <url2>
git remote -v
git push