recherche

Maison  >  Questions et réponses  >  le corps du texte

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

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

请问这该如何实现?

黄舟黄舟2815 Il y a quelques jours658

répondre à tous(4)je répondrai

  • 迷茫

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

    Vous devriez effectuer une recherche. SF a déjà posé cette question. Il n'est pas pratique de répondre à la question sur un téléphone portable, voici donc le résultat de la recherche : https://www.v2ex.com/t/37919

    répondre
    0
  • 高洛峰

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

    Modifiez le fichier .git/config de l'entrepôt local pour atteindre l'objectif :
    `[à distance "tous"]

    1

    2

    3

    4

    <code>            url = git@github.com:foo/bar.git

     

                url = git@gitcafe.com:hello/world.git`

    </code>

    Commande Push :
    git push all

    répondre
    0
  • 大家讲道理

    大家讲道理2017-04-28 09:08:17

    Vous pouvez utiliser la méthode git remote.
    git remote add origin git@github.com:foo/bar.git
    git remote add gitcafe git@gitcafe.com:hello/world.git

    Puis poussez
    git push origin master
    git push gitcafe master

    répondre
    0
  • 迷茫

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

    J'ai rencontré ce problème il y a quelques jours et j'ai écrit un blog, j'espère qu'il vous sera utile. git crée plusieurs référentiels distants

    répondre
    0
  • Annulerrépondre