45 lines
1.1 KiB
Markdown
45 lines
1.1 KiB
Markdown
# 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.
|