update authored by Administrator's avatar Administrator
...@@ -4,28 +4,28 @@ ...@@ -4,28 +4,28 @@
1. Выкачиваем суперрепозиторий: 1. Выкачиваем суперрепозиторий:
```bat ```bat
>git clone git@source.isimplelab.com:build/ibank_root.git git clone git@source.isimplelab.com:build/ibank_root.git
``` ```
2. Переходим в созданный каталог: 2. Переходим в созданный каталог:
```bat ```bat
>cd ibank_root cd ibank_root
``` ```
3. Инициализируем подмодули (--init) и получаем последние обновления (--remote): 3. Инициализируем подмодули (--init) и получаем последние обновления (--remote):
```bat ```bat
>git submodule update --init --remote git submodule update --init --remote
``` ```
4. Переключаем подмодули из состояния анонимной ветки (detached HEAD) на ветку master: 4. Переключаем подмодули из состояния анонимной ветки (detached HEAD) на ветку master:
```bat ```bat
>git submodule foreach git checkout master git submodule foreach git checkout master
``` ```
Для выкачивания ветки: Для выкачивания ветки:
```bat ```bat
>git clone git@source.isimplelab.com:build/ibank_root_12.git git clone git@source.isimplelab.com:build/ibank_root_12.git
>cd ibank_root_12 cd ibank_root_12
>git submodule update --init --remote git submodule update --init --remote
>git submodule foreach git checkout ibankfl-branch-2-0-12-393 git submodule foreach git checkout ibankfl-branch-2-0-12-393
``` ```