Git/Github

Github est un hébergeur de dépôts git
Je l'utilise à titre personnel   Github/JLTRY

Récupérer un pull localement pour tests

Voir Extraction de demandes de tirage localement - Documentation GitHub

#ex: git fetch origin pull/ID/head:BRANCH_NAME
git fetch origin pull/45/head:pull_45


Synchroniser son fork avec la branche principale

Voir Synchronisation d’une duplication - Documentation GitHub

#ex:git pull https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git BRANCH_NAME
 git pull https://github.com/jmcameron/attachments master


Liens Externes