2014-07-16 15 views

risposta

13

Su GitHub non è possibile confrontare due repository non correlati.

Sul computer è possibile:

  1. Vai alla directory di lavoro del vostro repo locale
  2. Aggiungi un telecomando per l'altra pronti contro termine e prenderlo
  3. Confronta utilizzando git diff

Ad esempio:

cd /path/to/repo 
git remote add other URL_TO_OTHER 
git fetch other 
git diff other/branchname 
git diff ..other/branchname # diff in the other direction 
Problemi correlati