Skip to content

Commit 855f794

Browse files
authored
Merge pull request #10 from dmitry-kabanov/fix-howto-instructions
Add instruction to fetch Git submodules after cloning
2 parents 7d47ba2 + 4ad5f56 commit 855f794

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

content/howto/member_list.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,11 @@ In your terminal/console navigate to a folder where you want to download the rep
3333
```bash
3434
git clone <link>
3535
```
36-
change into the new folder and switch to a new branch
36+
then go to the directory of the cloned repository and fetch submodules:
37+
```bash
38+
git submodule update --init --recursive
39+
```
40+
and switch to a new branch
3741
```bash
3842
git switch --create <branch_name>
3943
```

0 commit comments

Comments
 (0)