2010-01-05 6 views

Répondre

16

Créer un nouveau référentiel, puis ajouter ces deux référentiels comme Distants:

git remote add origin1 ... 
git remote add origin2 ... 

Fetch à la fois:

git fetch origin1 
git fetch origin2 

Créer une branche locale de suivre une branche de chaque télécommande (en supposant maître):

git branch branch1 origin1/master 
git branch branch2 origin2/master 
Questions connexes