managing-git
Manages Git workflows including branching, commits, and pull requests. Use when working with Git, creating commits, opening PRs, managing branches, resolving conflicts, or when asked about version control best practices.
npx skills add CloudAI-X/claude-workflow-v2 --skill managing-git --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Managing Git ### When to Load - **Trigger**: Branching strategies, commit workflows, pull requests, merge conflicts, version control questions - **Skip**: Tasks that do not involve git operations ## Feature Development Workflow Copy this checklist and track progress: ``` Feature Development Progress: - [ ] Step 1: Create feature branch from main - [ ] Step 2: Make changes with atomic commits - [ ] Step 3: Rebase on latest main - [ ] Step 4: Push and create PR - [ ] Step 5: Address review feedback - [ ] Step 6: Merge after approval ``` ## Branching Strategies ### GitHub Flow (Recommended for most projects) ``` main ──●────●────●────●────●── (always deployable) \ / feature └──●──●──┘ ``` - `main` is always deployable - Feature branches from main - PR + review + merge - Deploy after merge ### Git Flow (For release-based projects) ``` main ──●─────────────●────── (releases only) \ / release └────●────┘ / develop ──●──●────●──●──●── \ / feature └──●┘ ``` ## Commit Conventions ### Conventional Commits Format ``` <type>(<scope>): <description> [optional body] [optional footer(s)] ``` ### Types | Type | Description | | ---------- | --------------------------------------------------- | |
- When to Load
- Feature Development Workflow
- Branching Strategies
- GitHub Flow (Recommended for most projects)
- Git Flow (For release-based projects)
- Commit Conventions
- Conventional Commits Format
- Types
- Examples
- Branch Naming
- Pull Request Workflow
- PR Template
- PR Size Guidelines
- Common Git Commands
Implements Google and GitHub OAuth providers. Closes #123 BREAKING CHANGE: Session tokens now expire after 24h Previously caused 500 error when gateway returned null. Now returns appropriate error message to user. Start new feature git checkout main git pull git checkout -b feature/TICKET-123-description Commit changes
What does the managing-git skill do?
Manages Git workflows including branching, commits, and pull requests. Use when working with Git, creating commits, opening PRs, managing branches, resolving conflicts, or when asked about version control best practices.
How do I install it?
Run `npx skills add CloudAI-X/claude-workflow-v2 --skill managing-git --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From CloudAI-X/claude-workflow-v2, a repository with 1,397 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
