Aucun résumé des modifications |
|||
(6 versions intermédiaires par le même utilisateur non affichées) | |||
Ligne 2 : | Ligne 2 : | ||
{{sommaire à droite}} | {{sommaire à droite}} | ||
Github est un hébergeur de dépôts git<br> | Github est un hébergeur de dépôts git<br> | ||
Je l'utilise à titre personnel {{githublink|link= | Je l'utilise à titre personnel {{githublink|link=JLTRY|text=Github/JLTRY}}<br><br> | ||
== Récupérer un pull localement pour tests == | == Récupérer un pull localement pour tests == | ||
Voir <favorites like="Extraction de demandes de tirage" output=" | Voir <favorites like="Extraction de demandes de tirage" output="css3link"/> | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
#ex: git fetch origin pull/ID/head:BRANCH_NAME | #ex: git fetch origin pull/ID/head:BRANCH_NAME | ||
git fetch origin pull/45/head:pull_45 | git fetch origin pull/45/head:pull_45 | ||
</syntaxhighlight><br> | |||
== Synchroniser son fork avec la branche principale == | |||
Voir <favorites like="Synchronisation d’une duplication" output="css3link"/> | |||
<syntaxhighlight lang="bash"> | |||
#ex:git pull https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git BRANCH_NAME | |||
git pull https://github.com/jmcameron/attachments master | |||
</syntaxhighlight><br> | </syntaxhighlight><br> | ||
Github est un hébergeur de dépôts git
Je l'utilise à titre personnel Github/JLTRY
#ex: git fetch origin pull/ID/head:BRANCH_NAME git fetch origin pull/45/head:pull_45
#ex:git pull https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git BRANCH_NAME git pull https://github.com/jmcameron/attachments master