Agent skill
git:rebase
Rebase branches onto upstream main with automatic base detection
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/git-rebase-kagenti-kagenti
SKILL.md
Git Rebase
Rebase the current branch onto the upstream main branch. Uses a pattern that auto-detects the correct upstream remote and main branch.
When to Use
- Before creating a PR (ensure clean history)
- After upstream main has new commits
- During TDD iterations when CI requires a rebase
- When PR has merge conflicts
Quick Rebase (gfur alias)
The gfur alias automatically finds the upstream remote and main branch:
# Define gfur (add to ~/.bashrc or ~/.zshrc)
alias gfur='git fetch upstream && git rebase upstream/$(git symbolic-ref refs/remotes/upstream/HEAD | sed "s@^refs/remotes/upstream/@@")'
Use it:
gfur
If upstream/HEAD is not set:
git remote set-head upstream -a
Manual Rebase
git fetch upstream main
git rebase upstream/main
Rebase Conflicts
If conflicts occur during rebase:
# Check which files conflict
git status
Fix the conflicts, then:
git add <fixed-files>
git rebase --continue
To abort:
git rebase --abort
Sign All Commits After Rebase
After rebasing, ensure all commits are signed (required by Kagenti):
git rebase --signoff HEAD~$(git rev-list --count upstream/main..HEAD)
Related Skills
git:commit- Commit format conventionsgit:worktree- Parallel development with worktreestdd:ci- TDD workflow that needs rebase before pushrepo:commit- Repository-specific commit format
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?