← スキル一覧に戻る

rebase-on-main
by doodledood
A curated marketplace of Claude Code plugins for agentic development workflows, featuring tools for architecture, knowledge management, and development automation
⭐ 8🍴 0📅 2026年1月24日
SKILL.md
name: rebase-on-main description: Update main/master from origin, rebase current branch on it, resolve conflicts, and push.
Perform a rebase workflow for the current branch:
Steps
- Identify the main branch: Check if
mainormasterexists as the default branch - Save current branch name: Store the current branch name for later
- Fetch latest from origin: Run
git fetch origin - Update main/master locally: Checkout main/master and pull latest changes
- Return to feature branch: Checkout the original branch
- Rebase on main/master: Run
git rebase main(or master) - Handle conflicts if any:
- If conflicts occur, analyze each conflicting file
- Read the conflicting files to understand the context
- Resolve conflicts intelligently by understanding both changes
- Use
git addto mark resolved files - Continue rebase with
git rebase --continue - Repeat until all conflicts are resolved
- Push changes: Force push with lease using
git push --force-with-lease
Important Guidelines
- Always use
--force-with-leaseinstead of--forcefor safety - When resolving conflicts, prefer keeping functionality from both sides when possible
- If a conflict resolution is ambiguous, explain the choice made
- Report a summary of what was done at the end (commits rebased, conflicts resolved, etc.)
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
✓説明文
100文字以上の説明がある
+10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です