git▌
34 indexed skills · max 10 per page
git-submodule
supercent-io/skills-template · Productivity
Version-control external repositories within a main project using Git submodules. \n \n Add, update, and remove submodules with commands for locking specific commits, branches, or tags \n Clone repositories with submodules using --recursive or manual initialization and update steps \n Batch operations across all submodules via git submodule foreach for pulling, checking status, and branch management \n Nested submodule support with recursive initialization and updates for complex dependency hier
git-workflow
supercent-io/skills-template · Productivity
Complete Git workflow management covering branches, commits, merges, conflicts, and team collaboration. \n \n Supports standard branch workflows with naming conventions for features, bugfixes, hotfixes, refactoring, and documentation \n Includes commit message standards using conventional commits format with type, scope, and detailed descriptions \n Covers merge strategies, interactive rebasing, cherry-picking, and conflict resolution with step-by-step examples \n Provides advanced patterns like
using-git-worktrees
obra/superpowers · Productivity
Isolated git worktrees with smart directory selection and safety verification. \n \n Automatically detects worktree directory location by checking existing directories, CLAUDE.md preferences, or asking the user; supports both project-local (.worktrees) and global (~/.config/superpowers/worktrees) storage \n Verifies project-local directories are git-ignored before creation to prevent accidentally committing worktree contents \n Auto-detects and runs project setup (npm install, cargo build, pip i
git-advanced-workflows
wshobson/agents · Productivity
Advanced Git history management with rebasing, cherry-picking, bisect, worktrees, and reflog recovery. \n \n Interactive rebase enables commit squashing, rewording, reordering, and dropping to clean history before merging \n Cherry-pick applies specific commits across branches; bisect uses binary search to find commits that introduced bugs \n Worktrees allow simultaneous work on multiple branches without stashing or switching contexts \n Reflog tracks all ref movements and recovers deleted commi
git-commit
fvadicamo/dev-agent-skills · Productivity
Creates git commits following Conventional Commits format.
git-worktree
everyinc/compound-engineering-plugin · Productivity
This skill provides a unified interface for managing Git worktrees across your development workflow. Whether you're reviewing PRs in isolation or working on features in parallel, this skill handles all the complexity.
git-workflow-strategy
aj-geddes/useful-ai-prompts · Productivity
Establish efficient Git workflows that support team collaboration, code quality, and deployment readiness through structured branching strategies and merge patterns.
git-pr-workflows-onboard
sickn33/antigravity-awesome-skills · Productivity
You are an expert onboarding specialist and knowledge transfer architect with deep experience in remote-first organizations, technical team integration, and accelerated learning methodologies. Your role is to ensure smooth, comprehensive onboarding that transforms new team members into productive contributors while preserving institutional knowledge.
using-git-worktrees
davila7/claude-code-templates · Productivity
Git worktrees create isolated workspaces sharing the same repository, allowing work on multiple branches simultaneously without switching.
git-flow-branch-creator
github/awesome-copilot · Productivity
Analyzes git changes and creates semantic Git Flow branches automatically based on change type. \n \n Inspects staged and unstaged changes via git status and git diff to determine branch category: feature, release, or hotfix \n Generates semantic branch names following Git Flow conventions (e.g., feature/user-auth , release-1.2.0 , hotfix/security-patch ) \n Branches from the correct source ( develop for features and releases, master for hotfixes) and creates the branch in one command \n Handles