Git一个本地仓库同时推送到多个远程仓库

[core]
    repositoryformatversion = 0
    filemode = false
    bare = false
    logallrefupdates = true
    symlinks = false
    ignorecase = true
[remote "origin"]
    url = https://gitee.com/abc/WebDemos.git
    fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
    remote = origin
    merge = refs/heads/master
[remote "github"]
    url = git@github.com:abc/WebDemos.git
    fetch = +refs/heads/*:refs/remotes/github/*
    tagopt = --no-tags