git

Installation
SKILL.md

Git Skill

Guidance for Git workflows, branching strategies, and best practices.

Quick Start

# Create feature branch from main
git checkout main && git pull
git checkout -b feature/user-authentication

# Make commits with conventional commits
git commit -m "feat: add user authentication"

# Push and create PR
git push -u origin feature/user-authentication

When to Use

Installs
1
First Seen
9 days ago
git — stifleur390/fullstack-dev-skills