|
@@ -51,6 +51,18 @@ $ git push
|
|
|
|
|
|
## Commandes submodule (Lien vers les git des tests)
|
|
|
|
|
|
+Pour initialiser les submodules :
|
|
|
+
|
|
|
+```shell
|
|
|
+$ git submodule update --init
|
|
|
+```
|
|
|
+
|
|
|
+Pour initialiser un submodule précis :
|
|
|
+
|
|
|
+```shell
|
|
|
+$ git submodule update --init <nom_dossier_submodule>
|
|
|
+```
|
|
|
+
|
|
|
Pour mettre à jour les submodules :
|
|
|
|
|
|
```shell
|
|
@@ -59,7 +71,7 @@ $ git submodule update --remote
|
|
|
|
|
|
Pour mettre à jour un submodule précis :
|
|
|
|
|
|
-```sh
|
|
|
+```shell
|
|
|
$ git submodule update --remote <nom_dossier_submodule>
|
|
|
```
|
|
|
|