高洛峰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