Update main/master from origin, rebase current branch on it, resolve conflicts, and push.
Update your branch from origin, rebase on main/master, resolve any conflicts intelligently, and force push with lease. Use this to keep your feature branch current with the main branch before merging.
/plugin marketplace add doodledood/claude-code-plugins/plugin install vibe-extras@claude-code-plugins-marketplacePerform a rebase workflow for the current branch:
main or master exists as the default branchgit fetch origingit rebase main (or master)git add to mark resolved filesgit rebase --continuegit push --force-with-lease--force-with-lease instead of --force for safety