例如我有一個專案 hoten,需要在同時推送到 github 和 coding.net
請問這該如何實現?
人生最曼妙的风景,竟是内心的淡定与从容!
你應該搜尋一下的,SF有問過這個問題,手機答題不太方便,就給個搜尋結果吧:https://www.v2ex.com/t/37919
編輯本地倉庫的.git/config檔即可達到目地: `[remote "all"]
url = git@github.com:foo/bar.git url = git@gitcafe.com:hello/world.git`
推播指令:git push all
git push all
可使用git remote方法。git remote add origin git@github.com:foo/bar.gitgit remote add gitcafe git@gitcafe.com:hello/world.git
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 mastergit push origin mastergit push gitcafe mastergit push gitcafe master
git push origin master
git push gitcafe master
我恰好前幾天遇到這個問題,寫了一篇博客,希望對你有幫助。 git創建多個遠端倉庫
你應該搜尋一下的,SF有問過這個問題,手機答題不太方便,就給個搜尋結果吧:https://www.v2ex.com/t/37919
編輯本地倉庫的.git/config檔即可達到目地:
`[remote "all"]
推播指令:
git push all
可使用
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
我恰好前幾天遇到這個問題,寫了一篇博客,希望對你有幫助。 git創建多個遠端倉庫