From 27e9f08e863e9ca22c1244f3cb24150142571334 Mon Sep 17 00:00:00 2001 From: ertopogo Date: Sun, 22 Feb 2026 19:57:54 +0100 Subject: Application:correction de la visibilité des diagrames de séquence sous flux MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SCHEMA_CENTRAL.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'SCHEMA_CENTRAL.md') diff --git a/SCHEMA_CENTRAL.md b/SCHEMA_CENTRAL.md index b093c2e..0aee615 100644 --- a/SCHEMA_CENTRAL.md +++ b/SCHEMA_CENTRAL.md @@ -168,6 +168,23 @@ Le depot est heberge sur Gitea (`git.arauco.online`) avec une branche principale - **`git fetch`** : recupere les commits distants sans modifier la branche locale. Permet d'inspecter avant d'integrer. - **`git pull`** : equivalent a `git fetch` + `git merge`. Integre directement. +### Verifier l'etat de synchronisation + +```bash +git fetch origin && git status +``` + +Messages possibles : + +| Message | Signification | +|---------|--------------| +| `up to date with 'origin/main'` | Tout est synchronise | +| `ahead of 'origin/main' by X commits` | Commits locaux non pousses | +| `behind 'origin/main' by X commits` | Le serveur a des commits a recuperer | +| `have diverged` | Les deux cotes ont des commits differents | + +> `git fetch` avant `git status` est necessaire pour avoir l'info a jour du serveur. + ### Comparer apres un fetch ```bash -- cgit v1.2.3