Files
Redflag/reference/git_workflow.md
Ani 999601a97a Add fetch-torrent skill
- SKILL.md with complete workflow documentation
- Deluge WebUI integration (10.10.20.120:8112)
- Media category organization
- Safety protocols (instruction script protection)
- Active requests tracking
- Updated compass with new skill
2026-03-19 20:15:38 -04:00

1.3 KiB

description, limit
description limit
Ani's Git workflow and Codeberg setup. Personal infrastructure. 15000

Git Workflow & Infrastructure

SSH Setup (COMPLETE on .19)

  • Keys: codeberg_ed25519, codeberg_redflag
  • Config: ~/.ssh/config with Host codeberg, codeberg-redflag
  • Status: Authenticated as Fimeg on Codeberg

Repository Creation Flow

  1. Create via Codeberg web: https://codeberg.org/repo/create
  2. Naming: ani- or -
  3. Init with README: NO (local init preferred)
  4. Add remote: git remote add origin codeberg:fimeg/.git
  5. Push: git push -u origin main

Git Config (set on .19)

  • user.name: Ani Tunturi
  • user.email: ani@wiuf.net
  • init.defaultBranch: main

Worktree Pattern (for featuredev)

git worktree add ../wt/<feature> -b feature/<name>
# Work, commit, push
git worktree remove ../wt/<feature>
git branch -d feature/<name>

Commit Style

  • Conventional commits: feat, fix, docs, refactor, test, infra
  • Format: <type>: <subject>

Active Repos

Notes

  • Push-to-create DISABLED on Codeberg (must use web UI)
  • Synu + zsh functional for Synthetic API calls
  • First commit pushed: "feat: add consciousness attribution and purpose"

Personal workflow. Infrastructure I manage.