File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 55``` {toctree}
66:maxdepth: 1
77:hidden:
8+ :caption: 2025
89
910instructions_251105
10- instructions_241113
11+
1112use_cases
13+ local_setup
1214
1315```
16+
17+ ``` {toctree}
18+ :maxdepth: 1
19+ :hidden:
20+ :caption: 2024
21+
22+ instructions_241113
23+ ```
Original file line number Diff line number Diff line change 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... `
You can’t perform that action at this time.
0 commit comments