From 0e130eda462e3b5553189539268ec6d48f3c39ac Mon Sep 17 00:00:00 2001 From: UltraLion <49597041+UltraLionfr@users.noreply.github.com> Date: Thu, 21 Aug 2025 18:37:20 +0200 Subject: [PATCH] Update README.md --- tutos-git/README.md | 47 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) 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) +---