What problem does it solve?
This Skill automates the process of updating your current feature branch with the latest changes from the main branch, preventing merge conflicts and keeping your work synchronized.
Core Features & Use Cases
- Rebase onto Main: Integrates the latest changes from the
main branch into your current branch using git rebase.
- Automatic Stashing: Safely stashes uncommitted changes before rebasing and reapplies them afterward.
- Optional Force Push: Allows for a force push to your remote branch after a successful rebase.
- Linting: Includes an option to run linters before a force push to ensure code quality.
- Use Case: You've been working on a feature branch for a few days and want to incorporate the latest updates from
main before creating a pull request.
Quick Start
Sync your current branch with the main branch, stashing and force-pushing any changes.