git-version-control
Installation
SKILL.md
Git & Version Control
Production Git workflows, branching strategies, and collaborative development practices.
Quick Start
# Initialize and configure
git init
git config user.name "Developer Name"
git config user.email "dev@company.com"
# Daily workflow
git checkout -b feature/add-data-pipeline
git add .
git commit -m "feat: add ETL pipeline for customer data"
git push -u origin feature/add-data-pipeline