git-workflow

Use when establishing branching strategies, implementing Conventional Commits, creating or reviewing PRs, resolving PR review comments, merging PRs (including CI verification, auto-merge queues, and post-merge cleanup), managing PR review threads, merging PRs with signed commits, handling merge conflicts, creating releases, or integrating Git with CI/CD.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "git-workflow" with this command: npx skills add netresearch/git-workflow-skill/netresearch-git-workflow-skill-git-workflow

Git Workflow Skill

Expert patterns for Git version control: branching, commits, collaboration, and CI/CD.

Expertise Areas

  • Branching: Git Flow, GitHub Flow, Trunk-based development
  • Commits: Conventional Commits, semantic versioning
  • Collaboration: PR workflows, code review, merge strategies, thread resolution
  • CI/CD: GitHub Actions, GitLab CI, branch protection

Reference Files

ReferenceWhen to Load
references/branching-strategies.mdManaging branches, choosing branching model
references/commit-conventions.mdWriting commits, semantic versioning
references/pull-request-workflow.mdCreating/reviewing PRs, thread resolution, merging
references/ci-cd-integration.mdCI/CD automation, GitHub Actions
references/advanced-git.mdRebasing, cherry-picking, bisecting
references/github-releases.mdRelease management, immutable releases
references/code-quality-tools.mdShell linting, formatting, smart fixups, structural diffs

Content Triggers

  • PR operations (create, review, merge, thread resolution, conflicts, CI checks): load references/pull-request-workflow.md
  • Branching strategy: load references/branching-strategies.md
  • Commit messages: load references/commit-conventions.md
  • Releases: load references/github-releases.md

Conventional Commits (Quick Reference)

<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.

Branch Naming

feature/TICKET-123-description
fix/TICKET-456-bug-name
release/1.2.0
hotfix/1.2.1-security-patch

GitHub Flow (Default)

git checkout main && git pull
git checkout -b feature/my-feature
# ... work ...
git push -u origin HEAD
gh pr create && gh pr merge --squash

For code quality tools (shellcheck, shfmt, git-absorb, difft), see references/code-quality-tools.md.

GitHub Immutable Releases

CRITICAL: Deleted releases block tag names PERMANENTLY. Get releases right first time.

See references/github-releases.md for prevention and recovery patterns.

Verification

./scripts/verify-git-workflow.sh /path/to/repository

Contributing: https://github.com/netresearch/git-workflow-skill

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Research

jira-syntax

No summary provided by upstream source.

Repository SourceNeeds Review
Research

jira-communication

No summary provided by upstream source.

Repository SourceNeeds Review
Research

agents

No summary provided by upstream source.

Repository SourceNeeds Review
Research

context7

No summary provided by upstream source.

Repository SourceNeeds Review