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
Installs
5
GitHub Stars
7
First Seen
Mar 1, 2026
git — thechandanbhagat/claude-skills