managing-git-workflows

Installation
SKILL.md

Managing Git Workflows

Autonomous coding Git workflows for clear history and effective collaboration.

Atomic Commits

One Feature Per Commit

# Good: Single, focused commit
git add src/auth/login.ts src/auth/login.test.ts
git commit -m "Add login functionality with email validation"

# Bad: Multiple unrelated changes
git add .
git commit -m "Various changes"

Commit After Each Task

Installs
1
First Seen
Apr 4, 2026
managing-git-workflows — pelchers/sessionsaver