Claude Code Plugins

Community-maintained marketplace

Feedback

git-workflow

@athola/skrills
35
0

Git best practices for version control and collaboration

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name git-workflow
description Git best practices for version control and collaboration

Git Workflow

Best practices for Git version control.

Commit Guidelines

  • Write clear, descriptive commit messages
  • Use conventional commit format (feat, fix, docs, etc.)
  • Keep commits atomic and focused
  • Reference issue numbers when applicable

Branching Strategy

  • Use feature branches for new work
  • Keep main/master branch stable
  • Rebase or merge based on team conventions
  • Delete branches after merging

Collaboration

  • Pull frequently to stay updated
  • Resolve conflicts carefully
  • Review diffs before committing
  • Use pull requests for code review