git
Installation
SKILL.md
Git Skill
Advanced Git operations and workflows.
1. Branch Management
# Create and switch branch
git checkout -b feature/new-feature
# Rename branch
git branch -m old-name new-name
# Delete branch
git branch -d feature-branch # Safe delete
git branch -D feature-branch # Force delete