diff --git a/tutos-git/README.md b/tutos-git/README.md index 8b13789..1850d4f 100644 --- a/tutos-git/README.md +++ b/tutos-git/README.md @@ -1 +1,48 @@ +# 🌱 Tutoriels Git +Ce dossier contient mes notes et tutoriels sur **Git**, l’outil de gestion de versions. +Objectif : garder sous la main les commandes essentielles et quelques bonnes pratiques. + +--- + +## 📑 Contenu +- [Bases de Git](./bases.md) – initialisation, commits, branches +- [Astuces & raccourcis](./astuces.md) – commandes utiles au quotidien +- [Workflow recommandé](./workflow.md) – organisation de projet avec Git + +--- + +## 🚀 Commandes rapides + +### Initialiser un dépôt +```bash +git init +``` + +### Cloner un dépôt +```bash +git clone +``` + +### Suivre les modifications +```bash +git status +``` + +### Ajouter et valider +```bash +git add +git commit -m "Message clair" +``` + +### Envoyer vers un dépôt distant +```bash +git push origin main +``` + +--- + +## 💡 Ressources utiles +- [Documentation officielle](https://git-scm.com/doc) +- [Git Cheat Sheet](https://education.github.com/git-cheat-sheet-education.pdf) +---