docs: Repo-URL, Dateientabelle und git-init-Branch aktualisieren

- README.md: git clone URL auf Forgejo-Repo gesetzt
- README.md: test-utils.ts, run-tests.sh und examples/ in Dateientabelle ergänzt
- examples/README.md: git init -b main statt git init (verhindert master-Branch)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Dieter Schlüter 2026-05-29 21:26:02 +02:00
commit 3f688a72fb
2 changed files with 6 additions and 2 deletions

View file

@ -22,7 +22,7 @@ Features nutzen kann (Loop-Erkennung, Diff-Anzeige, `/version`):
```bash
for dir in python-calculator rust-wordcount go-fibonacci c-linkedlist; do
cd examples/$dir
git init && git add -A && git commit -m "feat: initial $dir"
git init -b main && git add -A && git commit -m "feat: initial $dir"
cd ../..
done
```