commit | 08815ad3eb245872700201e03c47cb504d1dc3f9 | [log] [tgz] |
---|---|---|
author | Gavin Mak <gavinmak@google.com> | Fri May 23 10:35:34 2025 -0700 |
committer | Gavin Mak <gavinmak@google.com> | Wed May 28 11:44:55 2025 -0700 |
tree | c9c29e0ef2002ab4afebd6f950f8563bf6e2d853 | |
parent | 3c8bae27ecb8a8d95f814430e8985924f770d63b [diff] |
upload: Add rev to rootRepo push option Bug: b/401147338 Change-Id: Iac19af5aadd250538702920d9beaeef9250c78fe Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/478801 Tested-by: Gavin Mak <gavinmak@google.com> Reviewed-by: Scott Lee <ddoman@google.com>
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.
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.
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