検索

ホームページ  >  に質問  >  本文

git - 如何将本地代码提交到多个远程仓库?

例如我有个项目 hoten,需要在同时推送到 github 和 coding.net

请问这该如何实现?

黄舟黄舟2804日前656

全員に返信(4)返信します

  • 迷茫

    迷茫2017-04-28 09:08:17

    SF が以前にこの質問をしたことがあり、携帯電話で質問に答えるのは不便なので、検索結果を提供します: https://www.v2ex.com/t/ 37919

    返事
    0
  • 高洛峰

    高洛峰2017-04-28 09:08:17

    目標を達成するには、ローカル ウェアハウスの .git/config ファイルを編集します:
    `[リモート「すべて」]

    リーリー

    プッシュコマンド:
    git push all

    返事
    0
  • 大家讲道理

    大家讲道理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.gitgit 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 gitcafe master

    その後pushの時期
    git Push Origin master
    git Push gitcafe master🎜

    返事
    0
  • 迷茫

    迷茫2017-04-28 09:08:17

    数日前にたまたまこの問題に遭遇し、ブログを書きました。お役に立てれば幸いです。 git は複数のリモートリポジトリを作成します

    返事
    0
  • キャンセル返事