From b21ec0d6015ae3348f7778f22fe157ba2fef84ac Mon Sep 17 00:00:00 2001 From: Markus Kruse Date: Fri, 24 Jul 2026 15:05:33 +0200 Subject: [PATCH] =?UTF-8?q?docs:=20GitHub=20setup=20Anleitung=20hinzugef?= =?UTF-8?q?=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- GITHUB_SETUP.md | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 GITHUB_SETUP.md diff --git a/GITHUB_SETUP.md b/GITHUB_SETUP.md new file mode 100644 index 0000000..0c0d0dd --- /dev/null +++ b/GITHUB_SETUP.md @@ -0,0 +1,45 @@ +# GitHub Setup + +## Problem: Keine GitHub-Authentifizierung + +Der GitHub-Repo-Create ist fehlgeschlagen. Es fehlt die `gh` Authentifizierung. + +## Lösung: GitHub Auth einrichten + +### 1. GitHub CLI installieren (falls nicht vorhanden) +```bash +brew install gh +``` + +### 2. GitHub Auth einrichten +```bash +gh auth login -h github.com +``` + +Wähle dabei: +- **Authentication Method**: SSH +- **Git Host**: github.com +- **Login via web**: yes (oder terminal basierend) + +### 3. Repo manuell erstellen (alternativ) + +Gehe zu https://github.com/new und erstelle ein privates Repo: +- **Repository name**: c-stone-invoice-check +- **Visibility**: Private +- **Description**: Email-Filterung und Rechnungsverarbeitung für Strato/Gmail mit Ablage auf Evo-X2 +- **Initial commit**: no +- **.gitignore**: Python +- **License**: None + +### 4. Repo mit lokalem Projekt verbinden +```bash +cd "/Users/cstone/C-Stone Cloud/Claude Code/projekte/C-Stone Invoice Check" +git remote set-url origin https://github.com/c-stone/c-stone-invoice-check.git +git push -u origin main +``` + +--- + +## Nach GitHub Setup fortsetzen + +Sobald `gh` funktioniert, `/project-start` erneut aufrufen.