Files
tutos/tutos-git/README.md
T
2025-08-21 18:37:20 +02:00

49 lines
951 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 🌱 Tutoriels Git
Ce dossier contient mes notes et tutoriels sur **Git**, loutil 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 <url>
```
### Suivre les modifications
```bash
git status
```
### Ajouter et valider
```bash
git add <fichier>
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)
---