====== 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 $ 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