高洛峰2017-04-28 09:08:17
编辑本地仓库的.git/config文件即可达到目地:
`[remote "all"]
url = git@github.com:foo/bar.git
url = git@gitcafe.com:hello/world.git`
推送命令:git push all
大家讲道理2017-04-28 09:08:17
可使用git remote
方法。git remote add origin git@github.com:foo/bar.git
git remote add gitcafe git@gitcafe.com:hello/world.git
然后push的时候git push origin master
git push origin master
git push gitcafe master
git push gitcafe master