Outils pour utilisateurs

Outils du site


hackathlon:pronote:publiergit

Pronote : publier le projet sur GitHub

Mémo

Cloner un dépôt :

$ git clone https://github.com/SIOHackathlon/Visite.git

Publier

  • se placer dans le dossier à gérer contenant les fichier de l'appli
  • cloner le projet distant existant
$ git clone https://github.com/SIOHackathlon/stagePronote.git
  • initialiser le dépôt
$ git init
  • ajouter les fichiers à suivre
$ git add --all
</code
  * faire un commit des fichiers avec un message
<code>
$ git commit -m 'Version 0 à la date du ...'
  • créer un alias vers le dépôt distant sur GitHub
git remote add stagePronote https://github.com/SIOHackathlon/stagePronote.git
  • publier sur le dépôt GitHub
$ git push stagePronote master
hackathlon/pronote/publiergit.txt · Dernière modification: 2017/06/27 15:46 (modification externe)