Agent Skill: Git workflow best practices for teams and CI/CD. Use when establishing branching strategies, implementing Conventional Commits, configuring PRs, or integrating Git with CI/CD. By Netresearch.
/plugin marketplace add netresearch/claude-code-marketplace/plugin install netresearch-skills-bundle@netresearch-claude-code-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
LICENSEREADME.mdcomposer.jsonreferences/advanced-git.mdreferences/branching-strategies.mdreferences/ci-cd-integration.mdreferences/commit-conventions.mdreferences/github-releases.mdreferences/pull-request-workflow.mdscripts/verify-git-workflow.shExpert patterns for Git version control: branching, commits, collaboration, and CI/CD.
Detailed documentation for each area:
references/branching-strategies.md - Branch management patternsreferences/commit-conventions.md - Commit message standardsreferences/pull-request-workflow.md - PR and review processesreferences/ci-cd-integration.md - Automation patternsreferences/advanced-git.md - Advanced Git operationsreferences/github-releases.md - Release management, immutable releases<type>[scope]: <description>
Types: feat (MINOR), fix (PATCH), docs, style, refactor, perf, test, build, ci, chore, revert
Breaking change: Add ! after type or BREAKING CHANGE: in footer.
feature/TICKET-123-description
fix/TICKET-456-bug-name
release/1.2.0
hotfix/1.2.1-security-patch
git checkout main && git pull
git checkout -b feature/my-feature
# ... work ...
git push -u origin HEAD
gh pr create && gh pr merge --squash
./scripts/verify-git-workflow.sh /path/to/repository
CRITICAL: Deleted releases block tag names PERMANENTLY. Get releases right first time.
See references/github-releases.md for prevention and recovery patterns.
Contributing: https://github.com/netresearch/git-workflow-skill