diff --git "a/Courrier/R\303\251ponse type/Mise \303\240 jour de l'application.md" "b/Courrier/R\303\251ponse type/Mise \303\240 jour de l'application.md" new file mode 100644 index 0000000000000000000000000000000000000000..a9f301523aacac02771d3b6b7e61ed257acb7d85 --- /dev/null +++ "b/Courrier/R\303\251ponse type/Mise \303\240 jour de l'application.md" @@ -0,0 +1,49 @@ +Bonjour, + +Nous vous recommandons de mettre à jour votre application sur le dernier tag disponible :** 21.03.33.** + +Les commandes suivantes permettent de réaliser cette opération. Attention, il faut bien se positionner dans le répertoire racine de Maarch Courrier pour les exécuter : + +Si le client administre une seule instance : + +~~~ c +/var/www/html/MaarchCourrier# git status + +/var/www/html/MaarchCourrier# git config core.fileMode false (si le git status donne une longue liste de modif : les chown/chmod de fichiers par exemple) + +/var/www/html/MaarchCourrier# git stash (optionel : s'il y a eu des modifications importantes) + +/var/www/html/MaarchCourrier# git fetch + +/var/www/html/MaarchCourrier# git branch + +/var/www/html/MaarchCourrier# git checkout -b 21.03.33 tags/21.03.33 + +/var/www/html/MaarchCourrier# git status + +/var/www/html/MaarchCourrier# git stash apply (optionel : s'il y a eu des modifications importantes) +~~~ + +Si le client administre plusieurs instances : + +~~~c +/var/www/html/MaarchCourrier# git status + +/var/www/html/MaarchCourrier# git config core.fileMode false (si le git status donne une longue liste de modif : les chown/chmod de fichiers par exemple) + +/var/www/html/MaarchCourrier# git stash (optionel : s'il y a eu des modifications importantes) + +/var/www/html/MaarchCourrier# git fetch --all --tags */ La partie qui change */ + +/var/www/html/MaarchCourrier# git branch + +/var/www/html/MaarchCourrier# git checkout -b 2301.3.1 tags/2301.3.1 + +/var/www/html/MaarchCourrier# git status + +/var/www/html/MaarchCourrier# git stash apply (optionel : s'il y a eu des modifications importantes) +~~~ + +Vérifiez à l'issue de ces opérations que les dossiers/fichiers mis à jour ont les bons droits et le bon utilisateur. + +Nous nous tenons à votre disposition pour plus d'informations. N'hésitez pas également à consulter notre documentation en ligne : https://docs.maarch.org/ ! \ No newline at end of file