Help us improve
Share bugs, ideas, or general feedback.
From git
Enforces Git best practices: never push to main/master, always use hyphenated topic branches, format multi-line commits with -m or heredoc. Useful for git commands, branching, pushing.
npx claudepluginhub bendrucker/claude --plugin gitHow this skill is triggered — by the user, by Claude, or both
Slash command
/git:gitThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
* **Never** `git push` to the default branch (usually `main` or `master`) unless I explicitly instruct you to do so.
Guides Git workflows with branching strategies (GitHub Flow, Git Flow), conventional commit messages, branch naming, PR templates, and operations like rebase. Use for Git ops, commits, branches, team workflows.
Provides Git workflow best practices for commits, rebasing, conflict resolution, and branch management. Delegates to git:commit-handler, git:conflict-resolver, and git:rebaser agents. Useful for git operations.
Manages Git workflows including branching, commit conventions, pull requests, and conflict resolution. Use with Git operations or version control questions.
Share bugs, ideas, or general feedback.
git push to the default branch (usually main or master) unless I explicitly instruct you to do so.For multi-line commit messages:
-m flags. Each -m creates a separate paragraph:
git commit -m "Subject line" -m "Body paragraph here."
git commit -m "$(cat <<'EOF'
Subject line
Body paragraph here.
EOF
)"