Skip to content

Commit 4ad5f56

Browse files
Add instruction to fetch Git submodules after cloning
Without fetching Git submodules (actually, there is only one now, the theme), Hugo cannot build the website locally due to the missing theme.
1 parent 230f0c6 commit 4ad5f56

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)