0605-17:30

This commit is contained in:
Ladebeze66 2025-05-06 17:29:44 +02:00
parent f451a29b47
commit 714ec379e6
2 changed files with 55 additions and 52 deletions

View File

@ -7,20 +7,6 @@
"id": "c3ae94f129fe31f2",
"type": "tabs",
"children": [
{
"id": "f53d68a91dcd39e9",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "inbox/Guide Complet des Paramètres LLM.md",
"mode": "preview",
"source": false
},
"icon": "lucide-file",
"title": "Guide Complet des Paramètres LLM"
}
},
{
"id": "e9f11643def27837",
"type": "leaf",
@ -35,8 +21,7 @@
"title": "Notes complémentaires préambule Ragflow"
}
}
],
"currentTab": 1
]
}
],
"direction": "vertical"
@ -93,8 +78,7 @@
}
],
"direction": "horizontal",
"width": 234.5,
"collapsed": true
"width": 234.5
},
"right": {
"id": "ad0ed0087b43302d",
@ -390,51 +374,51 @@
},
"active": "e9f11643def27837",
"lastOpenFiles": [
"inbox/Guide Complet des Paramètres LLM.md",
"inbox/Notes complémentaires préambule Ragflow.md",
"inbox/Modules OCR et Traduction.md",
"inbox/main_llama.py.md",
"inbox/Gestion des langues.md",
"command_list/Ollama commands.md",
"inbox/diagrammellamavision.drawio.crswap",
"command_list/Git commands.md",
"inbox/Notes brutes.md",
"inbox/Node.js.md",
"inbox/Modules OCR et Traduction.md",
"inbox/Mise en place process (llmticket) avec Llama-vision3.2-90b.md",
"inbox/wild.md",
"inbox/StreamDeck config.md",
"inbox/Script suivi JSON résultats.md",
"inbox/Questions pour Karim.md",
"inbox/main_llama.py.md",
"inbox/Guide Complet des Paramètres LLM.md",
"inbox/Gestion des langues.md",
"inbox/Extracteur Odoo.md",
"inbox/Prompt recherches approfondis LLM (Pixtral-Large).md",
"inbox/Pipeline de mon programme.md",
"inbox/llama3.2-vision_ticket_support.md",
"inbox/Non confirmé 758543.crdownload",
"ollama/Plan d'apprentissage détaillé sur Ollama.md",
"ollama/guide_ollama_complet.md",
"webdev/structure_projet_robo_mat.md",
"webdev/ROBO_MAT_Code_WLangage_Organise.md",
"webdev/ROBO_MAT_Analyse_Page_TEST_et_LLM.md",
"webdev/01_WLangage_Récupération_Projet_WebDev.md",
"webdev/00_Template_Analyse_ROBO_MAT.md",
"LLM/traitement_normes_ragflow.md",
"LLM/Test Cline.md",
"LLM/Résumé LLM-lab.md",
"inbox/wild.md",
"inbox/Script suivi JSON résultats.md",
"inbox/Scripts requêtes Odoo.md",
"inbox/StreamDeck config.md",
"inbox/Notes complémentaires préambule Ragflow.md",
"inbox/Orchestrteur.md",
"inbox/Questions pour Karim.md",
"inbox/Prompt readme.md",
"command_list/Git commands.md",
"inbox/diagrammellamavision.drawio",
"inbox/jsonmessages.png",
"inbox/agentanalyseimage.png",
"inbox/agentanalysetexte.png",
"inbox/agentfiltre.png",
"inbox/capture workspace.png",
"inbox/Sans titre.md",
"Stage/Flux d'exécution du programme.md",
"Stage/Analyse d'un ticket.md",
"Serveur perso/Prompt_Cursor_Complet_Agents_LLM_Pretraitement.md",
"Serveur perso/Prompt_Cursor_Complet_Agents_LLM_Pretraitement (1).md",
"Serveur perso/Notes projet LLM.md",
"Ragflow/RAGFLOW - Traitement des Normes Techniques avec Schémas (v1.0).md",
"Ragflow",
"LLM",
"regalgepixtral.png",
"inbox/reponsefiltreagent.png",
"inbox/regalgemistral.png",
"inbox/promptagenttexte.png",
"inbox/promptquestionréponse.png",
"LLM",
"Ragflow",
"inbox/promptagenttexte.png",
"inbox/jsonmessages.png",
"inbox/capture workspace.png",
"inbox/agentfiltre.png",
"inbox/agentanalysetexte.png",
"inbox/agentanalyseimage.png",
"inbox/Recupération_traitement_demande",
"inbox/diagrammellamavision.drawio.crswap",
"inbox/Non confirmé 758543.crdownload",
"inbox/Recupération_traitement_demande.drawio",
"inbox/Recupération_traitement_demande.drawio.crswap",
"inbox/Non confirmé 76314.crdownload",
"inbox/Non confirmé 623149.crdownload",
"inbox/Non confirmé 586728.crdownload"
"inbox/Non confirmé 623149.crdownload"
]
}

View File

@ -30,3 +30,22 @@
| git reset --hard <commit_id><br>git clean -fd<br> | **pour tout remettre propre** comme si tu navais jamais touché |
---
#### Objectif:
Pouvoir:
- Travailler sur la même branche
- Sur deux machines différentes
- Ajouter des fichiers, les modifier, les committer
- Puis pusher sans casse, sans --forece, et sans perdre de données
#### Les bonnes pratiques recommandées
#### 1. Toujours faire un pull --rebase avant de commencer à travailler
Sur cahque machien, avant de commencer ta session:
git pull --rebase origin ta-branch
- Cela met à jour ta branche locale avec les changments distants
- Repose tes derniers commits par-dessus (pas de merge commit inutile)
#### 2. Commits réguliers et clairs
Commit petit à petit, avec des messages explicites. Evite les gros commits fourre-tout, surtout quand tu alternes entre 2 machines.
#### 3. Toujoujours faire un git push avant de changer de machine
git push origin ta-branche