From f696044461626890a8fa572fe8fb8c07ebb47622 Mon Sep 17 00:00:00 2001 From: Bjarke Sporring Date: Wed, 14 Jan 2026 16:35:59 +0100 Subject: [PATCH] Simplify README installation instructions - Remove complex installation options - List prerequisites with direct winget commands - Keep oneshot installation as recommended option - Add manual setup steps for clarity - Focus on getting users started quickly --- README.md | 47 +++++++++++++++++++++++++++++++---------------- 1 file changed, 31 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index fe98043..17fcb47 100644 --- a/README.md +++ b/README.md @@ -77,30 +77,45 @@ Then run scripts using: ## Requirements -### Installation +### Prerequisites -**Quick Automated Installation (Windows 11):** +Install these tools before starting: + +**PowerShell 7+** +```powershell +winget install Microsoft.PowerShell +``` + +**Git 2.23+** +```powershell +winget install Git.Git +``` + +**Visual Studio Code** +```powershell +winget install Microsoft.VisualStudioCode +``` + +### Quick Start **Option 1: Oneshot Installation (Recommended)** -Download, install prerequisites, and clone the repository in one command: +Install everything and clone the repository in one command: ```powershell irm https://git.frod.dk/floppydiscen/git-workshop/raw/branch/main/install.ps1 | iex ``` -This will: -- Install PowerShell 7, Git 2.23+, and Visual Studio Code -- Clone the git-workshop repository to `~/git-workshop` -- Leave you ready to start the first module - -**Option 2: Local Installation** -Clone the repository first, then run: - -```powershell -.\install-prerequisites.ps1 -``` - -**Manual Installation:** See [INSTALLATION.md](INSTALLATION.md) for complete step-by-step installation instructions including PowerShell 7, Git, and Visual Studio Code. +**Option 2: Manual Setup** +1. Install the prerequisites above +2. Clone this repository: + ```powershell + git clone https://git.frod.dk/floppydiscen/git-workshop.git + ``` +3. Configure Git: + ```powershell + git config --global user.name "Your Name" + git config --global user.email "your.email@example.com" + ``` **Quick Check:**