Mise en place du readme

This commit is contained in:
HP_pellel
2025-09-07 15:01:27 +02:00
parent 564aceb193
commit d8d52a7fcd
+54
View File
@@ -1,3 +1,57 @@
# CHESS
Projet universitaire — implémentation dun jeu d’échecs en Java (IUT de Fontainebleau).
## Dépôts
- **Forge de lIUT** : `https://forge-fac.example.com/mon-orga/CHESS.git`
- **GitHub** : `https://github.com/Gaston667/CHESS.git`
## Commandes Git
```bash
# 1. Cloner le dépôt depuis la fac
git clone https://forge-fac.example.com/mon-orga/CHESS.git
cd CHESS
# 2. Ajouter GitHub comme remote supplémentaire
git remote add github https://github.com/Gaston667/CHESS.git
# 3. Vérifier les remotes
git remote -v
# 4. Récupérer les dernières modifications depuis la fac
git fetch origin
git pull origin main
# 5. Ajouter et committer des changements
git add .
git commit -m "Message du commit"
# 6. Pousser les changements vers la fac ET GitHub
git push origin main
git push github main
# 7. Pousser toutes les branches et tags (première synchro)
git push origin --all
git push github --all
git push origin --tags
git push github --tags
# 8. Créer et pousser une nouvelle branche
git checkout -b nouvelle-branche
git push origin nouvelle-branche
git push github nouvelle-branche
# 9. Resynchroniser les deux dépôts (mise à jour complète)
git fetch --all --prune
git push origin --all
git push github --all
git push origin --tags
git push github --tags
src/
├── modele/ Couche Modèle (logique du jeu)
│ ├── Partie.java