← Back to list

github-branches
by BreakerOfStems
⭐ 0🍴 0📅 Jan 23, 2026
SKILL.md
name: github-branches description: Create and manage feature branches
GitHub Branches Skill
Create, switch, and manage git branches for feature work.
See also: Shared Conventions | Safety Guidelines
Purpose
Manage branches following team conventions and keeping work organized.
Commands
git branch
git branch -a
git checkout -b <branch>
git switch -c <branch>
git fetch origin
git pull --rebase
git push -u origin <branch>
Branch Naming Convention
claude/<issue-number>-<short-slug>
Examples:
claude/123-fix-login-bugclaude/456-add-user-authclaude/789-refactor-api
Workflow
-
Ensure clean state
git status git fetch origin -
Update main branch
git checkout main git pull --rebase -
Create feature branch
git checkout -b claude/123-fix-login-bug -
Push branch to remote
git push -u origin claude/123-fix-login-bug
Policies
- Never work directly on main/master
- Always branch from an up-to-date main
- Use descriptive branch names with issue numbers
- Verify clean working directory before switching branches
- Delete merged branches to keep repo tidy
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon