logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

repo - repo rebase - manual page for repo rebase

Description

       Summary

       Rebase local branches on upstream branch

Details

       '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.

repo rebase                                         July 2022                                            REPO(1)

Name

       repo - repo rebase - manual page for repo rebase

Options

-h, --help
              show this help message and exit

       --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

       --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)

   Loggingoptions:-v, --verbose
              show all output

       -q, --quiet
              only show errors

       -i, --interactive
              interactive rebase (single project only)

   Multi-manifestoptions:--outer-manifest
              operate starting at the outermost manifest

       --no-outer-manifest
              do not operate on outer manifests

       --this-manifest-only
              only operate on this (sub)manifest

       --no-this-manifest-only, --all-manifests
              operate on this manifest and its submanifests

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

Synopsis

reporebase{[<project>...] |-i<project>...}

See Also