{{backlinks>.}} ====== Outils annexes ====== ===== Git ===== * Apprendre à «[[https://lfleron.forge.aeif.fr/git/|Développer avec Git]]» par Laura Fléron, [[https://www.education.gouv.fr/reussir-au-lycee/la-specialite-numerique-et-sciences-informatiques-au-bac-325448|NSI]] ((La spécialité "Numérique et sciences informatiques" au bac)), Académie de Reims. * [[https://lfleron.forge.aeif.fr/git/logiciel_git/logiciel_git/|L'emploi de Git]] ===== Github Desktop ===== * Optionnel * Installer [[https://desktop.github.com/|Github Desktop]] pour travailler plus efficacement avec Sloyd. * Consulter la [[https://docs.github.com/fr/desktop|documentation]] * [[https://docs.github.com/fr/desktop/installing-and-configuring-github-desktop/installing-and-authenticating-to-github-desktop/authenticating-to-github-in-github-desktop|S'authentifier]] avec son compte Sloyd. ((ou avec votre compte Github, Gitlab, etc., **si vous travaillez avec une autre plateforme git**)) * Fichier > Cloner un répertoire > URL * URL : ''https://sloyd.work//'' {{:sloyd:github_desktop_url.jpg?400}} Il est faut ensuite s'identifier ((au moment de cloner le répertoire si celui-ci est privé ou au moment de synchroniser)) avec son identifiant et son mot de passe. ---- {{:sloyd:github_desktop_auth.png}} ---- ===== Git ===== * Optionnel * Installer [[https://git-scm.com/downloads|Git]] pour travailler //directement// avec Git Par exemple, cloner [[https://sloyd.work/Zeth/Alphaville|Zeth/Alphaville]] git clone https://sloyd.work/Zeth/Alphaville Modifier un fichier ou Ajouter des fichiers puis git add . Créer un commit git commit -am "Nouveau commit" Pousser ((Téléverser)) git push origin master Tirer ((Mettre à jour un dépôt)) git pull origin master