docs: GitHub setup Anleitung hinzugefügt
This commit is contained in:
parent
e45fae43ac
commit
b21ec0d601
1 changed files with 45 additions and 0 deletions
45
GITHUB_SETUP.md
Normal file
45
GITHUB_SETUP.md
Normal file
|
|
@ -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.
|
||||
Loading…
Add table
Reference in a new issue