fix: add install instructions

This commit is contained in:
Bjarke Sporring
2026-01-16 12:43:11 +01:00
parent d80fa74af9
commit 382a125076

View File

@@ -84,12 +84,18 @@ winget install Git.Git
winget install Microsoft.VisualStudioCode
```
You can also run the one-shot install script if the project is cloned locally
You can also run the one-shot install script if the project is cloned locally.
It will check if you have the prerequisites install and clone down the project
if not already cloned. Then it will configure git to have sane default.
```pwsh
./install.ps1
```
or if you don't have the project locally run
or if you don't have the project locally run.
REMEMBER read through the script before running it. As a general practice, you
shouldn't get comfortable doing this kind of execution, and so it's important
to review executing remote scripts.
```pwsh
Invoke-RestMethod -Uri https://git.frod.dk/floppydiscen/git-workshop/raw/branch/main/install.ps1 | Invoke-Expression
```