Deprecated: Use of MediaWiki\Parser\ParserOutput::getText was deprecated in MediaWiki 1.42. [Called from SMW\MediaWiki\Hooks\OutputPageParserOutput::getParserOutput in /home/jltryoen/www/MediaWiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/OutputPageParserOutput.php at line 161] in /home/jltryoen/www/MediaWiki/includes/debug/MWDebug.php on line 386
« Git/Github » : différence entre les versions — La FAQ de JLT

« Git/Github » : différence entre les versions

Aucun résumé des modifications
Ligne 9 : Ligne 9 :
#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>



Version du 27 avril 2024 à 07:49

Github est un hébergeur de dépôts git
Je l'utilise à titre personnel   https://github.com/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