Scroll to navigation

REPO(1) Repo Manual REPO(1)

NAME

repo - repo rebase - manual page for repo rebase

SYNOPSIS

repo rebase {[<project>...] | -i <project>...}

DESCRIPTION

Summary

Rebase local branches on upstream branch

OPTIONS

-h, --help
show this help message and exit
-i, --interactive
interactive rebase (single project only)
--fail-fast
Stop rebasing after first error is hit
-f, --force-rebase
Pass --force-rebase to git rebase
--no-ff
Pass --no-ff to git rebase
-q, --quiet
Pass --quiet to git rebase
--autosquash
Pass --autosquash to git rebase
--whitespace=WS
Pass --whitespace to git rebase
--auto-stash
Stash local modifications before starting
-m, --onto-manifest
Rebase onto the manifest version instead of upstream HEAD. This helps to make sure the local tree stays consistent if you previously synced to a manifest.

Run `repo help rebase` to view the detailed manual.

Description

'repo rebase' uses git rebase to move local changes in the current topic branch to the HEAD of the upstream history, useful when you have made commits in a topic branch but need to incorporate new upstream changes "underneath" them.

January 2021 repo rebase