Agent Skills: Git Workflow

Git best practices for version control and collaboration

UncategorizedID: athola/skrills/git-workflow

Install this agent skill to your local

pnpm dlx add-skill https://github.com/athola/skrills/tree/HEAD/assets/demo-skills/git-workflow

Skill Files

Browse the full folder contents for git-workflow.

Download Skill

Loading file tree…

assets/demo-skills/git-workflow/SKILL.md

Skill Metadata

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