Go to file
Raman Tenneti 5637afcc60 superproject: prepend messages with - "repo superproject"
Changed _LogError method to _LogWarning.

Replaced 'repo error:' with "repo superproject warning:"(except IOError
message, which is still an "repo superproject error:" message)

Tested:
$ ./run_tests

Tested the errors and warnings by forcing the error/warning.
$ repo_dev sync -j 20 --use-superproject platform/packages/apps/Music
  ...
  repo superproject warning: please file a bug using go/repo-bug to report missing commit_ids for: []
  ...
  repo superproject error: cannot write manifest to : /sdc/android/src/aosp/.repo/exp-superproject/superproject_override.xml
  ...

Bug: [google internal] b/193711236

Change-Id: Ia0b6c830e04cf18dfc1a2ce325181a5b1160e054
Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/314642
Tested-by: Raman Tenneti <rtenneti@google.com>
Reviewed-by: Raman Tenneti <rtenneti@google.com>
Reviewed-by: Ian Kasprzak <iankaz@google.com>
Reviewed-by: Xin Li <delphij@google.com>
2021-08-12 16:30:26 +00:00
.github/workflows Drop support for Python 3.5 2021-06-03 11:34:17 +00:00
docs sync: Added logging of repo sync state and config options for analysis. 2021-07-29 19:20:57 +00:00
hooks
man man: make output system independent 2021-07-31 11:39:35 +00:00
release man: make output system independent 2021-07-31 11:39:35 +00:00
subcmds sync: Added logging of repo sync state and config options for analysis. 2021-07-29 19:20:57 +00:00
tests superproject: prepend messages with - "repo superproject" 2021-08-12 16:30:26 +00:00
.flake8
.gitattributes
.gitignore
.mailmap
.project
.pydevproject
color.py
command.py man: make output system independent 2021-07-31 11:39:35 +00:00
completion.bash bash-completion: complete projects with repo forall 2021-07-27 06:20:52 +00:00
editor.py
error.py
event_log.py
git_command.py Add the ability to administratively enroll repo into using superproject. 2021-07-01 16:27:43 +00:00
git_config.py sync: Remove '_' from the repo.syncstate.* keys when saved to config. 2021-07-29 22:41:57 +00:00
git_refs.py
git_ssh
git_superproject.py superproject: prepend messages with - "repo superproject" 2021-08-12 16:30:26 +00:00
git_trace2_event_log.py sync: Added logging of repo sync state and config options for analysis. 2021-07-29 19:20:57 +00:00
gitc_utils.py
hooks.py
LICENSE
main.py repo: add --show-toplevel akin to git 2021-07-28 05:38:53 +00:00
manifest_xml.py repo: properly handle remote annotations in manifest_xml 2021-07-23 18:03:11 +00:00
MANIFEST.in
pager.py
platform_utils_win32.py
platform_utils.py
progress.py
project.py repo: properly handle remote annotations in manifest_xml 2021-07-23 18:03:11 +00:00
README.md
repo
repo_trace.py
requirements.json Drop support for Python 3.5 2021-06-03 11:34:17 +00:00
run_tests run_tests: fix pytest selection inside tox venv 2021-06-03 15:27:51 +00:00
setup.py Drop support for Python 3.5 2021-06-03 11:34:17 +00:00
ssh.py ssh: rewrite proxy management for multiprocessing usage 2021-05-10 21:16:06 +00:00
SUBMITTING_PATCHES.md
tox.ini Drop support for Python 3.5 2021-06-03 11:34:17 +00:00
wrapper.py

repo

Repo is a tool built on top of Git. Repo helps manage many Git repositories, does the uploads to revision control systems, and automates parts of the development workflow. Repo is not meant to replace Git, only to make it easier to work with Git. The repo command is an executable Python script that you can put anywhere in your path.

Contact

Please use the repo-discuss mailing list or issue tracker for questions.

You can file a new bug report under the "repo" component.

Please do not e-mail individual developers for support. They do not have the bandwidth for it, and often times questions have already been asked on repo-discuss or bugs posted to the issue tracker. So please search those sites first.

Install

Many distros include repo, so you might be able to install from there.

# Debian/Ubuntu.
$ sudo apt-get install repo

# Gentoo.
$ sudo emerge dev-vcs/repo

You can install it manually as well as it's a single script.

$ mkdir -p ~/.bin
$ PATH="${HOME}/.bin:${PATH}"
$ curl https://storage.googleapis.com/git-repo-downloads/repo > ~/.bin/repo
$ chmod a+rx ~/.bin/repo