From 6cddb7a3ae2416710844582c62583da4c61a3d81 Mon Sep 17 00:00:00 2001 From: Gregory Colpart Date: Thu, 22 Feb 2024 16:27:06 +0100 Subject: [PATCH] explication d'un bug --- HowtoAegir.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/HowtoAegir.md b/HowtoAegir.md index 817359e4..d5cf7ce3 100644 --- a/HowtoAegir.md +++ b/HowtoAegir.md @@ -572,3 +572,16 @@ Nous [proposons le patch](https://github.com/aegir-project/provision/issues/41) > } ~~~ +### Erreur si présence d'un "/" dans une branche Git + +Si vous utilisez une branche Git pour récupérer le code de votre Plateforme, AEGIR plante si il y un "/" dans le nom de la branche, par exemple "foo/bar". +Solution : renommez votre branche… ou faites à la main : + +~~~ +$ cd platforms +$ git clone --recursive --depth 1 --branch 'foo/bar' 'john@git.example.com:PROJECT/DRUPAL.git' PLATFORM/ +~~~ + + + +