例如我有个项目 hoten,需要在同时推送到 github 和 coding.net
请问这该如何实现?
人生最曼妙的风景,竟是内心的淡定与从容!
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
Modifiez le fichier .git/config de l'entrepôt local pour atteindre l'objectif : `[à distance "tous"]
url = git@github.com:foo/bar.git url = git@gitcafe.com:hello/world.git`
Commande Push : git push all
git push all
Vous pouvez utiliser la méthode 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
Puis poussezgit push origin mastergit push gitcafe master
git push origin master
git push gitcafe master
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
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
Modifiez le fichier .git/config de l'entrepôt local pour atteindre l'objectif :
`[à distance "tous"]
Commande Push :
git push all
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
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