6,609
edits
(→Développeur individuel (git-svn): Added the new subsection to match the English article.) |
(→Télécharger à Sourceforge: Translated the section.) |
||
| Line 608: | Line 608: | ||
==== Télécharger à Sourceforge ==== | ==== Télécharger à Sourceforge ==== | ||
Afin de partager votre développements locaux, les modifications peuvent être téléchargés vers un dépôt git distant sur l'infrastructure SourceForge. Pour cela, un [[#Dépôt git de développeur|dépôt git de développeur]] doit d'abord être créé sous votre profil à SourceForge. Ajoutez ensuite ce dépôt distant comme une «remote»: | |||
<syntaxhighlight lang="bash"> | |||
git remote add origin ssh://<identifiant>@git.code.sf.net/u/<identifiant>/code-<aéronef> | |||
</syntaxhighlight> | |||
Et envoyer la branche master où les développements sont situés à: | |||
<syntaxhighlight lang="bash"> | |||
git push --set-upstream origin master | |||
</syntaxhighlight> | |||
Les modifications dans le nouveau dépôt sera visible à travers de l'interface web à <span style="color: blue"><tt><nowiki>https://sourceforge.net/u/<identifiant>/code-<aéronef>/ci/master/tree/</nowiki></tt></span>. | |||
=== Envoi de changements de dépôt externe git dans FGAddon === | === Envoi de changements de dépôt externe git dans FGAddon === | ||