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/ +~~~ + + + +