Skip to content

Commit d99c7dd

Browse files
committed
🔧 move content around
1 parent 24a569c commit d99c7dd

3 files changed

Lines changed: 32 additions & 1 deletion

File tree

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@ webkitallowfullscreen="true">
6161
</iframe>
6262

6363

64+
## Local Setup
65+
66+
See [local_setup](local_setup.md) for instructions to setup git on your local computer.
6467

6568
## Links to learn more
6669

index.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,19 @@
55
```{toctree}
66
:maxdepth: 1
77
:hidden:
8+
:caption: 2025
89
910
instructions_251105
10-
instructions_241113
11+
1112
use_cases
13+
local_setup
1214
1315
```
16+
17+
```{toctree}
18+
:maxdepth: 1
19+
:hidden:
20+
:caption: 2024
21+
22+
instructions_241113
23+
```

local_setup.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Setup git locally
2+
3+
## Download git
4+
5+
Download and install git from [git-scm.com](https://git-scm.com/install)
6+
for your operating system.
7+
8+
## Configure git
9+
10+
You will need to setup your git email and user-name
11+
(replace with yours in case you want to commit something, otherwise use copy-paste)
12+
to identify yourself in the commits:
13+
14+
```bash
15+
git config --global user.email "you@example.com"
16+
git config --global user.name "Your Name"
17+
```
18+
> could be added to local config using `git config user...`

0 commit comments

Comments
 (0)