Start Feature Branch
Usage
/gitmastery:feature # Prompts for name
/gitmastery:feature user-auth # Direct name
Workflow
1. Check Current State
git branch --show-current
git status --short
2. Switch to Develop if Needed
git checkout develop
git pull origin develop
3. Start Feature
git flow feature start <name>
Naming Convention
<ticket>-<short-description>
Examples:
PROJ-123-user-authenticationfix-memory-leakadd-export-feature
After Starting
You're now on feature/<name>. Use:
/gitmastery:committo commit changes/gitmastery:finishwhen complete
