Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • -c: Fetch only the current manifest branch from the server.

  • -d: Switch specified projects back to the manifest revision. This is helpful if the project is currently on a topic branch, but the manifest revision is temporarily needed.

  • -f: Proceed with syncing other projects even if a project fails to sync.

  • -j threadcount: Split the sync across threads for faster completion. Make sure not to overwhelm your machine by leaving some CPU reserved for other tasks. To see the number of available CPUs, first run: nproc --all
  • -q: Run quietly by suppressing status messages.

  • -s: Sync to a known good build as specified by the manifest-server element in the current manifest.

Panel

Example:

repo sync -j4 sync 

Upload

For the specified projects, Repo compares the local branches to the remote branches updated during the last Repo sync. Repo prompts you to select one or more of the branches that haven't been uploaded for review. 

...

Code Block
$ repo upload [project-list]
Panel
repo upload

Diff

Shows outstanding changes between the commit and the working tree using git diff.

...